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