| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//rlz/features/features.gni") | 9 import("//rlz/features/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" | 376 "//components/test/android/browsertests_apk/AndroidManifest.xml.jinja2" |
| 377 output = | 377 output = |
| 378 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" | 378 "${target_gen_dir}/components_browsertests_manifest/AndroidManifest.xml" |
| 379 } | 379 } |
| 380 | 380 |
| 381 android_resources("components_browsertests_resources") { | 381 android_resources("components_browsertests_resources") { |
| 382 testonly = true | 382 testonly = true |
| 383 resource_dirs = [ "//components/test/android/browsertests_apk/res" ] | 383 resource_dirs = [ "//components/test/android/browsertests_apk/res" ] |
| 384 custom_package = "org.chromium.components_browsertests_apk" | 384 custom_package = "org.chromium.components_browsertests_apk" |
| 385 } | 385 } |
| 386 | |
| 387 # TODO(GYP_GONE): Delete this target once recipes no longer require it. | |
| 388 junit_binary("components_junit_tests") { | |
| 389 java_files = [ "//testing/android/junit/DummyTest.java" ] | |
| 390 } | |
| 391 } | 386 } |
| 392 | 387 |
| 393 if (!is_ios) { | 388 if (!is_ios) { |
| 394 test("components_browsertests") { | 389 test("components_browsertests") { |
| 395 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 390 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 396 | 391 |
| 397 sources = [ | 392 sources = [ |
| 398 "autofill/content/browser/risk/fingerprint_browsertest.cc", | 393 "autofill/content/browser/risk/fingerprint_browsertest.cc", |
| 399 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", | 394 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", |
| 400 "dom_distiller/content/browser/distillable_page_utils_browsertest.cc", | 395 "dom_distiller/content/browser/distillable_page_utils_browsertest.cc", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 "//testing/perf", | 503 "//testing/perf", |
| 509 "//url", | 504 "//url", |
| 510 ] | 505 ] |
| 511 | 506 |
| 512 if (!is_ios) { | 507 if (!is_ios) { |
| 513 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] | 508 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] |
| 514 deps += [ "//components/discardable_memory/common" ] | 509 deps += [ "//components/discardable_memory/common" ] |
| 515 } | 510 } |
| 516 } | 511 } |
| 517 } | 512 } |
| OLD | NEW |