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 chromium_code = true | |
agrieve
2015/11/17 19:30:59
nit: this is the default. Can just remove it.
| |
19 shared_resources = true | |
20 native_libs = [ "libwebviewchromium.so" ] | |
21 native_lib_version_rule = "//build/util:chrome_version_json" | |
22 _native_lib_file = | |
23 rebase_path("$root_gen_dir/CHROME_VERSION.json", root_out_dir) | |
24 native_lib_version_arg = "@FileArg($_native_lib_file:full-quoted)" | |
25 extensions_to_not_compress = ".lpak,.pak,.bin,.dat" | |
26 } | |
27 } | |
OLD | NEW |