Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Side by Side Diff: third_party/android_webview_glue/android_webview_glue.gypi

Issue 677033002: [android_webview] Extract common SystemWebview parameters to .gypi file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/android_webview_glue/android_webview_glue_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'system_webview_apk', 7 'target_name': 'system_webview_apk',
8 'type': 'none',
9 'dependencies': [
10 'libwebviewchromium',
11 'android_webview_java',
12 'android_webview_pak',
13 ],
14 'variables': { 8 'variables': {
15 'android_sdk_jar': '../third_party/android_platform/webview/frameworks.j ar',
16 'apk_name': 'SystemWebView', 9 'apk_name': 'SystemWebView',
17 'app_manifest_version_code': '999999',
18 'java_in_dir': 'src/chromium',
19 'java_in_dir_suffix': '/java',
20 'native_lib_target': 'libwebviewchromium',
21 'never_lint': 1,
22 'resource_dir': 'src/chromium/res',
23 'R_package': 'com.android.webview.chromium',
24 'R_package_relpath': 'com/android/webview/chromium',
25 'extensions_to_not_compress': 'pak',
26 'asset_location': '<(PRODUCT_DIR)/android_webview_assets',
27 # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
28 'additional_input_paths': [
29 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
30 '<(PRODUCT_DIR)/android_webview_assets/en-US.pak',
31 ],
32 'conditions': [
33 ['icu_use_data_file_flag==1', {
34 'additional_input_paths': [
35 '<(PRODUCT_DIR)/icudtl.dat',
36 ],
37 }],
38 ],
39 }, 10 },
11 'includes': [ 'android_webview_glue_common.gypi' ],
40 'copies': [ 12 'copies': [
41 { 13 {
42 'destination': '<(PRODUCT_DIR)/android_webview_assets', 14 'destination': '<(PRODUCT_DIR)/android_webview_assets',
43 'files': [], 15 'files': [],
44 'conditions': [ 16 'conditions': [
45 ['icu_use_data_file_flag==1', { 17 ['icu_use_data_file_flag==1', {
46 'files': [ 18 'files': [
47 '<(PRODUCT_DIR)/icudtl.dat', 19 '<(PRODUCT_DIR)/icudtl.dat',
48 ], 20 ],
49 }], 21 }],
50 ], 22 ],
51 }, 23 },
52 ],'includes': [ '../../build/java_apk.gypi' ], 24 ],
53 }, 25 },
54 ], 26 ],
55 } 27 }
56 28
OLDNEW
« no previous file with comments | « no previous file | third_party/android_webview_glue/android_webview_glue_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698