| Index: chrome/test/BUILD.gn
|
| diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
|
| index 32a0caaa068a47adb3c35f3100847edbbbdd0eac..812bfb7cfc1e53eb66c17ff3aa243bd3cc922cd7 100644
|
| --- a/chrome/test/BUILD.gn
|
| +++ b/chrome/test/BUILD.gn
|
| @@ -1667,12 +1667,14 @@ test("unit_tests") {
|
| [ "../browser/download/download_request_infobar_delegate_unittest.cc" ]
|
| }
|
|
|
| - if (!is_android && !is_ios) {
|
| + if (!is_ios) {
|
| deps += [ ":unit_tests_js" ]
|
| - sources += rebase_path(
|
| - chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources,
|
| - ".",
|
| - "//chrome")
|
| + if (!is_android) {
|
| + sources += rebase_path(
|
| + chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources,
|
| + ".",
|
| + "//chrome")
|
| + }
|
| }
|
|
|
| if (is_ios || is_chromeos) {
|
|
|