| 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("//android_webview/webview_repack_locales_list.gni") | 5 import("//android_webview/webview_repack_locales_list.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//chrome/android/chrome_public_apk_tmpl.gni") | 9 import("//chrome/android/chrome_public_apk_tmpl.gni") |
| 10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") | 10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 "//third_party/android_support_test_runner:runner_java", | 873 "//third_party/android_support_test_runner:runner_java", |
| 874 ] | 874 ] |
| 875 additional_apks = [ | 875 additional_apks = [ |
| 876 "//chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_serv
ice:apk_with_webapk_service", | 876 "//chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_serv
ice:apk_with_webapk_service", |
| 877 "//chrome/android/webapk/shell_apk:webapk_javatests", | 877 "//chrome/android/webapk/shell_apk:webapk_javatests", |
| 878 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", | 878 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk
", |
| 879 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", | 879 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support
_apk", |
| 880 "//net/android:net_test_support_apk", | 880 "//net/android:net_test_support_apk", |
| 881 ] | 881 ] |
| 882 proguard_enabled = !is_java_debug | 882 proguard_enabled = !is_java_debug |
| 883 |
| 884 # The test APK contains code from both the APK under test and the |
| 885 # test APK when proguard is enabled. That causes this APK to exceed |
| 886 # the dex limit. |
| 887 enable_multidex = proguard_enabled |
| 883 } | 888 } |
| 884 | 889 |
| 885 if (enable_vr) { | 890 if (enable_vr) { |
| 886 instrumentation_test_apk("chrome_public_test_vr_apk") { | 891 instrumentation_test_apk("chrome_public_test_vr_apk") { |
| 887 apk_name = "ChromePublicTestVr" | 892 apk_name = "ChromePublicTestVr" |
| 888 apk_under_test = ":chrome_public_apk" | 893 apk_under_test = ":chrome_public_apk" |
| 889 android_manifest = chrome_public_test_vr_apk_manifest | 894 android_manifest = chrome_public_test_vr_apk_manifest |
| 890 android_manifest_dep = ":chrome_public_test_vr_apk_manifest" | 895 android_manifest_dep = ":chrome_public_test_vr_apk_manifest" |
| 891 | 896 |
| 892 deps = [ | 897 deps = [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 apk_name = "ChromeSyncShellTest" | 932 apk_name = "ChromeSyncShellTest" |
| 928 apk_under_test = ":chrome_sync_shell_apk" | 933 apk_under_test = ":chrome_sync_shell_apk" |
| 929 android_manifest = chrome_sync_shell_test_apk_manifest | 934 android_manifest = chrome_sync_shell_test_apk_manifest |
| 930 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 935 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 931 deps = [ | 936 deps = [ |
| 932 ":chrome_sync_shell_test_apk_java", | 937 ":chrome_sync_shell_test_apk_java", |
| 933 "//third_party/android_support_test_runner:runner_java", | 938 "//third_party/android_support_test_runner:runner_java", |
| 934 ] | 939 ] |
| 935 proguard_enabled = !is_java_debug | 940 proguard_enabled = !is_java_debug |
| 936 } | 941 } |
| OLD | NEW |