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

Side by Side Diff: chrome/android/BUILD.gn

Issue 1034053002: [Android] Add an out-of-app instrumentation driver APK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix AndroidWebviewTest manifest changes Created 5 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
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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 import("//chrome/version.gni") 8 import("//chrome/version.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/icu/config.gni") 10 import("//third_party/icu/config.gni")
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 DEPRECATED_java_in_dir = "shell/javatests/src" 448 DEPRECATED_java_in_dir = "shell/javatests/src"
449 } 449 }
450 450
451 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk 451 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk
452 android_apk("chrome_shell_test_apk") { 452 android_apk("chrome_shell_test_apk") {
453 testonly = true 453 testonly = true
454 deps = [ 454 deps = [
455 ":chrome_javatests", 455 ":chrome_javatests",
456 ":chrome_shell_test_java", 456 ":chrome_shell_test_java",
457 "//sync/android:sync_javatests", 457 "//sync/android:sync_javatests",
458 "//testing/android/broker:broker_java",
458 "//ui/android:ui_javatests", 459 "//ui/android:ui_javatests",
459 ] 460 ]
461 datadeps = [
462 "//testing/android/driver:driver_apk",
463 ]
460 apk_name = "ChromeShellTest" 464 apk_name = "ChromeShellTest"
461 android_manifest = "shell/javatests/AndroidManifest.xml" 465 android_manifest = "shell/javatests/AndroidManifest.xml"
462 } 466 }
463 467
464 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests 468 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests
465 junit_binary("chrome_junit_tests") { 469 junit_binary("chrome_junit_tests") {
466 java_files = 470 java_files =
467 [ "junit/src/org/chromium/chrome/browser/omaha/ResponseParserTest.java" ] 471 [ "junit/src/org/chromium/chrome/browser/omaha/ResponseParserTest.java" ]
468 deps = [ 472 deps = [
469 ":chrome_java", 473 ":chrome_java",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 ] 534 ]
531 } 535 }
532 536
533 zip("chrome_version_srcjar") { 537 zip("chrome_version_srcjar") {
534 inputs = [ 538 inputs = [
535 chrome_version_java_file, 539 chrome_version_java_file,
536 ] 540 ]
537 output = "$target_gen_dir/$target_name.srcjar" 541 output = "$target_gen_dir/$target_name.srcjar"
538 base_dir = chrome_version_java_dir 542 base_dir = chrome_version_java_dir
539 } 543 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698