| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" | 345 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" |
| 346 output = | 346 output = |
| 347 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" | 347 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" |
| 348 } | 348 } |
| 349 | 349 |
| 350 android_resources("components_browsertests_resources") { | 350 android_resources("components_browsertests_resources") { |
| 351 testonly = true | 351 testonly = true |
| 352 resource_dirs = [ "//components/test/android/browsertests_apk/res" ] | 352 resource_dirs = [ "//components/test/android/browsertests_apk/res" ] |
| 353 custom_package = "org.chromium.components_browsertests_apk" | 353 custom_package = "org.chromium.components_browsertests_apk" |
| 354 } | 354 } |
| 355 |
| 356 # GYP: //components/components_tests.gyp:components_junit_tests |
| 357 # TODO(GYP): Delete this target once recipes no longer require it. |
| 358 junit_binary("components_junit_tests") { |
| 359 java_files = [ "//testing/android/junit/DummyTest.java" ] |
| 360 } |
| 355 } | 361 } |
| 356 | 362 |
| 357 if (!is_ios) { | 363 if (!is_ios) { |
| 358 test("components_browsertests") { | 364 test("components_browsertests") { |
| 359 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 365 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 360 | 366 |
| 361 sources = [ | 367 sources = [ |
| 362 "autofill/content/browser/risk/fingerprint_browsertest.cc", | 368 "autofill/content/browser/risk/fingerprint_browsertest.cc", |
| 363 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", | 369 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", |
| 364 "dom_distiller/content/browser/distillable_page_utils_browsertest.cc", | 370 "dom_distiller/content/browser/distillable_page_utils_browsertest.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 "//base/test:test_support_perf", | 468 "//base/test:test_support_perf", |
| 463 "//components/scheduler", | 469 "//components/scheduler", |
| 464 "//components/visitedlink/browser", | 470 "//components/visitedlink/browser", |
| 465 "//content/test:test_support", | 471 "//content/test:test_support", |
| 466 "//testing/gtest", | 472 "//testing/gtest", |
| 467 "//testing/perf", | 473 "//testing/perf", |
| 468 "//url", | 474 "//url", |
| 469 ] | 475 ] |
| 470 } | 476 } |
| 471 } | 477 } |
| OLD | NEW |