OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//base/android/linker/config.gni") | 5 import("//base/android/linker/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
8 import("//third_party/leakcanary/config.gni") | 8 import("//third_party/leakcanary/config.gni") |
9 import("channel.gni") | 9 import("channel.gni") |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 "enable_webvr=$enable_webvr", | 34 "enable_webvr=$enable_webvr", |
35 ] | 35 ] |
36 | 36 |
37 template("chrome_public_apk_tmpl") { | 37 template("chrome_public_apk_tmpl") { |
38 android_apk(target_name) { | 38 android_apk(target_name) { |
39 forward_variables_from(invoker, "*") | 39 forward_variables_from(invoker, "*") |
40 _native_lib_file = | 40 _native_lib_file = |
41 rebase_path("$root_gen_dir/CHROME_VERSION.json", root_out_dir) | 41 rebase_path("$root_gen_dir/CHROME_VERSION.json", root_out_dir) |
42 native_lib_version_arg = "@FileArg($_native_lib_file:full-quoted)" | 42 native_lib_version_arg = "@FileArg($_native_lib_file:full-quoted)" |
43 native_lib_version_rule = "//build/util:chrome_version_json" | 43 native_lib_version_rule = "//build/util:chrome_version_json" |
44 | 44 |
45 if (is_java_debug) { | 45 if (is_java_debug) { |
46 enable_multidex = true | 46 enable_multidex = true |
47 } else { | 47 } else { |
48 proguard_enabled = true | 48 proguard_enabled = true |
49 if (!defined(proguard_configs)) { | 49 if (!defined(proguard_configs)) { |
50 proguard_configs = [] | 50 proguard_configs = [] |
51 } | 51 } |
52 proguard_configs += [ | 52 proguard_configs += [ |
53 "//chrome/android/java/proguard.flags", | 53 "//chrome/android/java/proguard.flags", |
54 "//base/android/proguard/chromium_apk.flags", | 54 "//base/android/proguard/chromium_apk.flags", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 [ "//chrome/android:monochrome_secondary_abi_lib" ] | 92 [ "//chrome/android:monochrome_secondary_abi_lib" ] |
93 } | 93 } |
94 | 94 |
95 alternative_android_sdk_jar = webview_framework_jar | 95 alternative_android_sdk_jar = webview_framework_jar |
96 app_as_shared_lib = true | 96 app_as_shared_lib = true |
97 use_chromium_linker = false | 97 use_chromium_linker = false |
98 requires_sdk_api_level_23 = true | 98 requires_sdk_api_level_23 = true |
99 enable_relocation_packing = true | 99 enable_relocation_packing = true |
100 extensions_to_not_compress = ".lpak,.pak,.bin,.dat" | 100 extensions_to_not_compress = ".lpak,.pak,.bin,.dat" |
101 | 101 |
| 102 # Incremental install doesn't work for monochrome. See crbug.com/663492. |
| 103 never_incremental = true |
| 104 |
102 # Configrations to make android load shared library from APK. | 105 # Configrations to make android load shared library from APK. |
103 uncompress_shared_libraries = true | 106 uncompress_shared_libraries = true |
104 page_align_shared_libraries = true | 107 page_align_shared_libraries = true |
105 | 108 |
106 forward_variables_from(invoker, "*") | 109 forward_variables_from(invoker, "*") |
107 | 110 |
108 if (!defined(deps)) { | 111 if (!defined(deps)) { |
109 deps = [] | 112 deps = [] |
110 } | 113 } |
111 deps += [ | 114 deps += [ |
112 "//android_webview:monochrome_webview_assets", | 115 "//android_webview:monochrome_webview_assets", |
113 "//android_webview/glue", | 116 "//android_webview/glue", |
114 "//chrome/android:chrome_public_non_pak_assets", | 117 "//chrome/android:chrome_public_non_pak_assets", |
115 "//chrome/android:monochrome_pak_assets", | 118 "//chrome/android:monochrome_pak_assets", |
116 ] | 119 ] |
117 | 120 |
118 if (!is_java_debug) { | 121 if (!is_java_debug) { |
119 if (!defined(proguard_configs)) { | 122 if (!defined(proguard_configs)) { |
120 proguard_configs = [] | 123 proguard_configs = [] |
121 } | 124 } |
122 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] | 125 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] |
123 } | 126 } |
124 } | 127 } |
125 } | 128 } |
OLD | NEW |