| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 if (enable_configuration_policy) { | 258 if (enable_configuration_policy) { |
| 259 deps += [ "//components/policy/android:policy_java" ] | 259 deps += [ "//components/policy/android:policy_java" ] |
| 260 } | 260 } |
| 261 } | 261 } |
| 262 | 262 |
| 263 # Desktop-only deps. | 263 # Desktop-only deps. |
| 264 if (!is_android && !is_ios) { | 264 if (!is_android && !is_ios) { |
| 265 deps += [ | 265 deps += [ |
| 266 "//components/audio_modem:unit_tests", | 266 "//components/audio_modem:unit_tests", |
| 267 "//components/copresence:unit_tests", | |
| 268 "//components/feedback:unit_tests", | 267 "//components/feedback:unit_tests", |
| 269 "//components/proximity_auth:unit_tests", | 268 "//components/proximity_auth:unit_tests", |
| 270 "//components/storage_monitor:unit_tests", | 269 "//components/storage_monitor:unit_tests", |
| 271 "//components/web_modal:unit_tests", | 270 "//components/web_modal:unit_tests", |
| 272 "//components/webusb:unit_tests", | 271 "//components/webusb:unit_tests", |
| 273 ] | 272 ] |
| 274 } | 273 } |
| 275 | 274 |
| 276 if (enable_rlz_support) { | 275 if (enable_rlz_support) { |
| 277 deps += [ "//components/rlz:unit_tests" ] | 276 deps += [ "//components/rlz:unit_tests" ] |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 "//base/test:test_support_perf", | 494 "//base/test:test_support_perf", |
| 496 "//components/scheduler", | 495 "//components/scheduler", |
| 497 "//components/visitedlink/browser", | 496 "//components/visitedlink/browser", |
| 498 "//content/test:test_support", | 497 "//content/test:test_support", |
| 499 "//testing/gtest", | 498 "//testing/gtest", |
| 500 "//testing/perf", | 499 "//testing/perf", |
| 501 "//url", | 500 "//url", |
| 502 ] | 501 ] |
| 503 } | 502 } |
| 504 } | 503 } |
| OLD | NEW |