Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1511)

Side by Side Diff: components/BUILD.gn

Issue 1905103002: 🐮 Add dummy junit targets so that GYP & GN have the same targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot to add java file Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/invalidation.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/invalidation.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698