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/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_overrides/v8.gni") | 7 import("//build_overrides/v8.gni") |
8 import("//chrome/android/chrome_public_apk_tmpl.gni") | 8 import("//chrome/android/chrome_public_apk_tmpl.gni") |
9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 | 554 |
555 # GYP: //chrome/android/chrome_apk.gyp:chrome_public_test_apk | 555 # GYP: //chrome/android/chrome_apk.gyp:chrome_public_test_apk |
556 instrumentation_test_apk("chrome_public_test_apk") { | 556 instrumentation_test_apk("chrome_public_test_apk") { |
557 apk_name = "ChromePublicTest" | 557 apk_name = "ChromePublicTest" |
558 apk_under_test = ":chrome_public_apk" | 558 apk_under_test = ":chrome_public_apk" |
559 android_manifest = chrome_public_test_apk_manifest | 559 android_manifest = chrome_public_test_apk_manifest |
560 android_manifest_dep = ":chrome_public_test_apk_manifest" | 560 android_manifest_dep = ":chrome_public_test_apk_manifest" |
561 | 561 |
562 deps = [ | 562 deps = [ |
563 ":chrome_test_java", | 563 ":chrome_test_java", |
| 564 "//chrome/android/webapk/libs/runtime_library:runtime_library_javatests", |
564 "//chrome/android/webapk/shell_apk:shell_apk_javatests", | 565 "//chrome/android/webapk/shell_apk:shell_apk_javatests", |
565 ] | 566 ] |
566 additional_apks = [ | 567 additional_apks = [ |
567 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", | 568 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", |
568 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", | 569 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", |
569 "//net/android:net_test_support_apk", | 570 "//net/android:net_test_support_apk", |
570 ] | 571 ] |
571 isolate_file = "../chrome_public_test_apk.isolate" | 572 isolate_file = "../chrome_public_test_apk.isolate" |
572 proguard_enabled = !is_java_debug | 573 proguard_enabled = !is_java_debug |
573 } | 574 } |
(...skipping 27 matching lines...) Expand all Loading... |
601 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 602 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
602 apk_name = "ChromeSyncShellTest" | 603 apk_name = "ChromeSyncShellTest" |
603 apk_under_test = ":chrome_sync_shell_apk" | 604 apk_under_test = ":chrome_sync_shell_apk" |
604 android_manifest = chrome_sync_shell_test_apk_manifest | 605 android_manifest = chrome_sync_shell_test_apk_manifest |
605 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 606 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
606 deps = [ | 607 deps = [ |
607 ":chrome_sync_shell_test_apk_java", | 608 ":chrome_sync_shell_test_apk_java", |
608 ] | 609 ] |
609 proguard_enabled = !is_java_debug | 610 proguard_enabled = !is_java_debug |
610 } | 611 } |
OLD | NEW |