| 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 |
| 316 if (is_android) { | 320 if (is_android) { |
| 317 isolate_file = "components_unittests.isolate" | 321 isolate_file = "components_unittests.isolate" |
| 318 | 322 |
| 319 deps += [ "//content/public/android:content_java" ] | 323 deps += [ "//content/public/android:content_java" ] |
| 320 deps -= [ | 324 deps -= [ |
| 321 "//components/gcm_driver:unit_tests", | 325 "//components/gcm_driver:unit_tests", |
| 322 "//components/gcm_driver/instance_id:unit_tests", | 326 "//components/gcm_driver/instance_id:unit_tests", |
| 323 ] | 327 ] |
| 324 } | 328 } |
| 325 | 329 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 438 |
| 435 deps = [ | 439 deps = [ |
| 436 "//base", | 440 "//base", |
| 437 "//base/test:test_support_perf", | 441 "//base/test:test_support_perf", |
| 438 "//testing/gtest", | 442 "//testing/gtest", |
| 439 "//testing/perf", | 443 "//testing/perf", |
| 440 "//content/test:test_support", | 444 "//content/test:test_support", |
| 441 "//components/visitedlink/browser", | 445 "//components/visitedlink/browser", |
| 442 ] | 446 ] |
| 443 } | 447 } |
| OLD | NEW |