| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 # Configrations to make android load shared library from APK. | 101 # Configrations to make android load shared library from APK. |
| 102 uncompress_shared_libraries = true | 102 uncompress_shared_libraries = true |
| 103 page_align_shared_libraries = true | 103 page_align_shared_libraries = true |
| 104 | 104 |
| 105 forward_variables_from(invoker, "*") | 105 forward_variables_from(invoker, "*") |
| 106 | 106 |
| 107 if (!defined(deps)) { | 107 if (!defined(deps)) { |
| 108 deps = [] | 108 deps = [] |
| 109 } | 109 } |
| 110 deps += [ "//android_webview/glue" ] | 110 deps += [ |
| 111 "//android_webview:monochrome_webview_assets", |
| 112 "//android_webview/glue", |
| 113 "//chrome/android:chrome_public_non_pak_assets", |
| 114 "//chrome/android:monochrome_pak_assets", |
| 115 ] |
| 111 | 116 |
| 112 if (!is_java_debug) { | 117 if (!is_java_debug) { |
| 113 if (!defined(proguard_configs)) { | 118 if (!defined(proguard_configs)) { |
| 114 proguard_configs = [] | 119 proguard_configs = [] |
| 115 } | 120 } |
| 116 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] | 121 proguard_configs += [ "//android_webview/apk/java/proguard.flags" ] |
| 117 } | 122 } |
| 118 } | 123 } |
| 119 } | 124 } |
| OLD | NEW |