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

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

Issue 2868593002: [Android] Enable multidex for release builds of chrome_public_test_apk. (RELAND) (Closed)
Patch Set: Created 3 years, 7 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 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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