| Index: chrome/test/BUILD.gn
|
| diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
|
| index cd0fce0be5d3c0fcec57e9d9b81ba03b46cdc2b3..499da5ab531113bb7926df4d447a0f109331a0e2 100644
|
| --- a/chrome/test/BUILD.gn
|
| +++ b/chrome/test/BUILD.gn
|
| @@ -1175,7 +1175,7 @@ static_library("browser_tests_runner") {
|
| ":test_support",
|
| ]
|
|
|
| - if (enable_package_mash_services) {
|
| + if (is_chromeos && enable_package_mash_services) {
|
| sources += [
|
| "base/browser_tests_main_chromeos.cc",
|
| "base/mash_browser_tests_main.cc",
|
| @@ -5116,7 +5116,7 @@ if (is_android) {
|
| }
|
| }
|
|
|
| -if (enable_package_mash_services) {
|
| +if (is_chromeos && enable_package_mash_services) {
|
| # TODO(GYP_GONE): Delete this after we've converted everything to GN.
|
| # The _run targets exist only for compatibility w/ GYP.
|
| group("mash_browser_tests_run") {
|
|
|