| 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 22 matching lines...) Expand all Loading... |
| 33 "enable_vr_shell=$enable_vr_shell", | 33 "enable_vr_shell=$enable_vr_shell", |
| 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 | 43 native_lib_version_rule = "//build/util:chrome_version_json" |
| 44 |
| 44 if (is_java_debug) { | 45 if (is_java_debug) { |
| 45 enable_multidex = true | 46 enable_multidex = true |
| 46 } else { | 47 } else { |
| 47 proguard_enabled = true | 48 proguard_enabled = true |
| 48 if (!defined(proguard_configs)) { | 49 if (!defined(proguard_configs)) { |
| 49 proguard_configs = [] | 50 proguard_configs = [] |
| 50 } | 51 } |
| 51 proguard_configs += [ | 52 proguard_configs += [ |
| 52 "//chrome/android/java/proguard.flags", | 53 "//chrome/android/java/proguard.flags", |
| 53 "//base/android/proguard/chromium_apk.flags", | 54 "//base/android/proguard/chromium_apk.flags", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ] | 116 ] |
| 116 | 117 |
| 117 if (!is_java_debug) { | 118 if (!is_java_debug) { |
| 118 if (!defined(proguard_configs)) { | 119 if (!defined(proguard_configs)) { |
| 119 proguard_configs = [] | 120 proguard_configs = [] |
| 120 } | 121 } |
| 121 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] | 122 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] |
| 122 } | 123 } |
| 123 } | 124 } |
| 124 } | 125 } |
| OLD | NEW |