mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-12 22:56:09 +00:00
Expand is_linux to is_linux || is_chromeos.
Currnetly ,is_linux GN variable is set to true on Chrome OS build, but it is planned to be set false. This CL is the preparation to keep the bahavior compatible. Bug: chromium:1110266 Test: Build locally. Change-Id: Iffbfafe3ac5b00899804afa7471a04709046610a Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/28340 Reviewed-by: Kai Ninomiya <kainino@chromium.org> Commit-Queue: Hidehiko Abe <hidehiko@chromium.org>
This commit is contained in:
committed by
Commit Bot service account
parent
9427c97d9c
commit
948b3a0555
@@ -146,7 +146,7 @@ config("dawn_internal") {
|
||||
# This GN file is discovered by all Chromium builds, but common doesn't support
|
||||
# all of Chromium's OSes so we explicitly make the target visible only on
|
||||
# systems we know Dawn is able to compile on.
|
||||
if (is_win || is_linux || is_mac || is_fuchsia || is_android) {
|
||||
if (is_win || is_linux || is_chromeos || is_mac || is_fuchsia || is_android) {
|
||||
static_library("common") {
|
||||
sources = [
|
||||
"Assert.cpp",
|
||||
|
||||
Reference in New Issue
Block a user