OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") |
| 7 |
| 8 template("system_webview_apk_tmpl") { |
| 9 android_apk(target_name) { |
| 10 forward_variables_from(invoker, "*") |
| 11 |
| 12 deps += [ |
| 13 "//android_webview:assets", |
| 14 "//android_webview:libwebviewchromium", |
| 15 "//base:base_java", |
| 16 ] |
| 17 |
| 18 shared_resources = true |
| 19 native_libs = [ "libwebviewchromium.so" ] |
| 20 native_lib_version_rule = "//build/util:chrome_version_json" |
| 21 _native_lib_file = |
| 22 rebase_path("$root_gen_dir/CHROME_VERSION.json", root_out_dir) |
| 23 native_lib_version_arg = "@FileArg($_native_lib_file:full-quoted)" |
| 24 extensions_to_not_compress = ".lpak,.pak,.bin,.dat" |
| 25 } |
| 26 } |
OLD | NEW |