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

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

Issue 2839983002: [Android] Enable multidex for release builds of chrome_public_test_apk. (RELAND) (Closed)
Patch Set: roll deps Created 3 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
« no previous file with comments | « build/secondary/third_party/android_tools/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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
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
885 } 890 }
886 891
887 if (enable_vr) { 892 if (enable_vr) {
888 instrumentation_test_apk("chrome_public_test_vr_apk") { 893 instrumentation_test_apk("chrome_public_test_vr_apk") {
889 apk_name = "ChromePublicTestVr" 894 apk_name = "ChromePublicTestVr"
890 apk_under_test = ":chrome_public_apk" 895 apk_under_test = ":chrome_public_apk"
891 android_manifest = chrome_public_test_vr_apk_manifest 896 android_manifest = chrome_public_test_vr_apk_manifest
892 android_manifest_dep = ":chrome_public_test_vr_apk_manifest" 897 android_manifest_dep = ":chrome_public_test_vr_apk_manifest"
893 898
894 deps = [ 899 deps = [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 apk_name = "ChromeSyncShellTest" 934 apk_name = "ChromeSyncShellTest"
930 apk_under_test = ":chrome_sync_shell_apk" 935 apk_under_test = ":chrome_sync_shell_apk"
931 android_manifest = chrome_sync_shell_test_apk_manifest 936 android_manifest = chrome_sync_shell_test_apk_manifest
932 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" 937 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest"
933 deps = [ 938 deps = [
934 ":chrome_sync_shell_test_apk_java", 939 ":chrome_sync_shell_test_apk_java",
935 "//third_party/android_support_test_runner:runner_java", 940 "//third_party/android_support_test_runner:runner_java",
936 ] 941 ]
937 proguard_enabled = !is_java_debug 942 proguard_enabled = !is_java_debug
938 } 943 }
OLDNEW
« no previous file with comments | « build/secondary/third_party/android_tools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698