| 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 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 "//base", | 306 "//base", |
| 307 "//base/test:test_support", | 307 "//base/test:test_support", |
| 308 "//content/test:test_support", | 308 "//content/test:test_support", |
| 309 "//net", | 309 "//net", |
| 310 "//ui/base", | 310 "//ui/base", |
| 311 "//ui/resources:ui_test_pak", | 311 "//ui/resources:ui_test_pak", |
| 312 ] | 312 ] |
| 313 | 313 |
| 314 data_deps = [ ":components_tests_pak" ] | 314 data_deps = [ ":components_tests_pak" ] |
| 315 | 315 |
| 316 if (enable_rlz_support) { | |
| 317 deps += [ "//components/rlz:unit_tests" ] | |
| 318 } | |
| 319 | |
| 320 if (is_android) { | 316 if (is_android) { |
| 321 isolate_file = "components_unittests.isolate" | 317 isolate_file = "components_unittests.isolate" |
| 322 | 318 |
| 323 deps += [ "//content/public/android:content_java" ] | 319 deps += [ "//content/public/android:content_java" ] |
| 324 deps -= [ | 320 deps -= [ |
| 325 "//components/gcm_driver:unit_tests", | 321 "//components/gcm_driver:unit_tests", |
| 326 "//components/gcm_driver/instance_id:unit_tests", | 322 "//components/gcm_driver/instance_id:unit_tests", |
| 327 ] | 323 ] |
| 328 } | 324 } |
| 329 | 325 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 | 431 |
| 436 deps = [ | 432 deps = [ |
| 437 "//base", | 433 "//base", |
| 438 "//base/test:test_support_perf", | 434 "//base/test:test_support_perf", |
| 439 "//testing/gtest", | 435 "//testing/gtest", |
| 440 "//testing/perf", | 436 "//testing/perf", |
| 441 "//content/test:test_support", | 437 "//content/test:test_support", |
| 442 "//components/visitedlink/browser", | 438 "//components/visitedlink/browser", |
| 443 ] | 439 ] |
| 444 } | 440 } |
| OLD | NEW |