OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # When making changes remember that this is shared with the internal .apk | 5 # When making changes remember that this is shared with the internal .apk |
6 # build rules. | 6 # build rules. |
7 { | 7 { |
8 'type': 'none', | 8 'type': 'none', |
9 'dependencies': [ | 9 'dependencies': [ |
10 '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium', | 10 '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium', |
11 ], | 11 ], |
12 'variables': { | 12 'variables': { |
13 'native_lib_target': 'libwebviewchromium', | 13 'native_lib_target': 'libwebviewchromium', |
14 'native_lib_version_name': '<(version_full)', | 14 'native_lib_version_name': '<(version_full)', |
15 'never_lint': 1, | |
newt (away)
2015/10/13 20:41:38
Do you need to make a change to GN too? (or looks
| |
16 'shared_resources': 1, | 15 'shared_resources': 1, |
17 'extensions_to_not_compress': '.lpak,.pak,.bin,.dat', | 16 'extensions_to_not_compress': '.lpak,.pak,.bin,.dat', |
18 'asset_location': '<(INTERMEDIATE_DIR)/assets/', | 17 'asset_location': '<(INTERMEDIATE_DIR)/assets/', |
19 'snapshot_copy_files': '<(snapshot_copy_files)', | 18 'snapshot_copy_files': '<(snapshot_copy_files)', |
20 'jinja_inputs': ['<(android_manifest_template_path)'], | 19 'jinja_inputs': ['<(android_manifest_template_path)'], |
21 'jinja_output': '<(INTERMEDIATE_DIR)/AndroidManifest.xml', | 20 'jinja_output': '<(INTERMEDIATE_DIR)/AndroidManifest.xml', |
22 'jinja_variables': [ '<@(android_manifest_template_vars)' ], | 21 'jinja_variables': [ '<@(android_manifest_template_vars)' ], |
23 'android_manifest_template_vars': [ ], | 22 'android_manifest_template_vars': [ ], |
24 'android_manifest_template_path': '<(DEPTH)/android_webview/apk/java/Android Manifest.xml', | 23 'android_manifest_template_path': '<(DEPTH)/android_webview/apk/java/Android Manifest.xml', |
25 'android_manifest_path': '<(jinja_output)', | 24 'android_manifest_path': '<(jinja_output)', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 '<(asset_location)/webview_licenses.notice', | 76 '<(asset_location)/webview_licenses.notice', |
78 ], | 77 ], |
79 'message': 'Generating WebView license notice', | 78 'message': 'Generating WebView license notice', |
80 }, | 79 }, |
81 ], | 80 ], |
82 'includes': [ | 81 'includes': [ |
83 '../../build/java_apk.gypi', | 82 '../../build/java_apk.gypi', |
84 '../../build/android/jinja_template.gypi', | 83 '../../build/android/jinja_template.gypi', |
85 ], | 84 ], |
86 } | 85 } |
OLD | NEW |