| 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 apk_under_test = ":chrome_public_apk" | 597 apk_under_test = ":chrome_public_apk" |
| 598 android_manifest = chrome_public_test_apk_manifest | 598 android_manifest = chrome_public_test_apk_manifest |
| 599 android_manifest_dep = ":chrome_public_test_apk_manifest" | 599 android_manifest_dep = ":chrome_public_test_apk_manifest" |
| 600 | 600 |
| 601 deps = [ | 601 deps = [ |
| 602 ":chrome_test_java", | 602 ":chrome_test_java", |
| 603 "//chrome/android/webapk/libs/runtime_library:runtime_library_javatests", | 603 "//chrome/android/webapk/libs/runtime_library:runtime_library_javatests", |
| 604 "//chrome/android/webapk/shell_apk:shell_apk_javatests", | 604 "//chrome/android/webapk/shell_apk:shell_apk_javatests", |
| 605 ] | 605 ] |
| 606 additional_apks = [ | 606 additional_apks = [ |
| 607 "//chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_serv
ice:apk_with_webapk_service", |
| 607 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", | 608 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", |
| 608 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", | 609 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", |
| 609 "//net/android:net_test_support_apk", | 610 "//net/android:net_test_support_apk", |
| 610 ] | 611 ] |
| 611 proguard_enabled = !is_java_debug | 612 proguard_enabled = !is_java_debug |
| 612 } | 613 } |
| 613 | 614 |
| 614 android_library("chrome_sync_shell_test_apk_java") { | 615 android_library("chrome_sync_shell_test_apk_java") { |
| 615 testonly = true | 616 testonly = true |
| 616 | 617 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 639 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 640 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 640 apk_name = "ChromeSyncShellTest" | 641 apk_name = "ChromeSyncShellTest" |
| 641 apk_under_test = ":chrome_sync_shell_apk" | 642 apk_under_test = ":chrome_sync_shell_apk" |
| 642 android_manifest = chrome_sync_shell_test_apk_manifest | 643 android_manifest = chrome_sync_shell_test_apk_manifest |
| 643 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 644 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 644 deps = [ | 645 deps = [ |
| 645 ":chrome_sync_shell_test_apk_java", | 646 ":chrome_sync_shell_test_apk_java", |
| 646 ] | 647 ] |
| 647 proguard_enabled = !is_java_debug | 648 proguard_enabled = !is_java_debug |
| 648 } | 649 } |
| OLD | NEW |