mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-18 01:15:39 +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
@@ -63,7 +63,7 @@ template("dawn_component") {
|
||||
"@executable_path/",
|
||||
]
|
||||
}
|
||||
if (is_linux && dawn_has_build) {
|
||||
if ((is_linux || is_chromeos) && dawn_has_build) {
|
||||
configs = [ "//build/config/gcc:rpath_for_built_shared_libraries" ]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user