Roll src/third_party/WebKit 9301d6f:4619053 (svn 201058:201059)
[chromium-blink-merge.git] / android_webview / apk / system_webview_apk_common.gypi
blobdecd71617aace937e57c141874c561e43f3c1bad
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
3 # found in the LICENSE file.
5 # When making changes remember that this is shared with the internal .apk
6 # build rules.
8   'type': 'none',
9   'dependencies': [
10     '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium',
11     '<(DEPTH)/android_webview/android_webview.gyp:android_webview_java',
12     '<(DEPTH)/android_webview/android_webview.gyp:android_webview_pak',
13   ],
14   'variables': {
15     'native_lib_target': 'libwebviewchromium',
16     'native_lib_version_name': '<(version_full)',
17     'never_lint': 1,
18     'R_package': 'com.android.webview.chromium',
19     'R_package_relpath': 'com/android/webview/chromium',
20     'shared_resources': 1,
21     'extensions_to_not_compress': '.lpak,.pak,.bin,.dat',
22     'asset_location': '<(INTERMEDIATE_DIR)/assets/',
23     'snapshot_copy_files': '<(snapshot_copy_files)',
24     'jinja_inputs': ['<(android_manifest_template_path)'],
25     'jinja_output': '<(INTERMEDIATE_DIR)/AndroidManifest.xml',
26     'jinja_variables': [ '<@(android_manifest_template_vars)' ],
27     'android_manifest_template_vars': [ ],
28     'android_manifest_template_path': '<(DEPTH)/android_webview/apk/java/AndroidManifest.xml',
29     'android_manifest_path': '<(jinja_output)',
30     'proguard_enabled': 'true',
31     'proguard_flags_paths': ['<(DEPTH)/android_webview/apk/java/proguard.flags'],
32     # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
33     'additional_input_paths': [
34       '<(asset_location)/webviewchromium.pak',
35       '<(asset_location)/webview_licenses.notice',
36       '<@(snapshot_additional_input_paths)',
37     ],
38     'includes': [
39       '../../build/util/version.gypi',
40       '../snapshot_copying.gypi',
41     ],
42     'conditions': [
43       ['icu_use_data_file_flag==1', {
44         'additional_input_paths': [
45           '<(asset_location)/icudtl.dat',
46         ],
47       }],
48     ],
49   },
50   'copies': [
51     {
52       'destination': '<(asset_location)',
53       'files': [
54         '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
55         '<@(snapshot_copy_files)',
56       ],
57       'conditions': [
58         ['icu_use_data_file_flag==1', {
59           'files': [
60             '<(PRODUCT_DIR)/icudtl.dat',
61           ],
62         }],
63       ],
64     },
65   ],
66   'actions': [
67     {
68       'action_name': 'generate_webview_license_notice',
69       'inputs': [
70         '<!@(python <(DEPTH)/android_webview/tools/webview_licenses.py notice_deps)',
71         '<(DEPTH)/android_webview/tools/licenses_notice.tmpl',
72         '<(DEPTH)/android_webview/tools/webview_licenses.py',
73       ],
74       'outputs': [
75         '<(asset_location)/webview_licenses.notice',
76       ],
77       'action': [
78         'python',
79         '<(DEPTH)/android_webview/tools/webview_licenses.py',
80         'notice',
81         '<(asset_location)/webview_licenses.notice',
82       ],
83       'message': 'Generating WebView license notice',
84     },
85   ],
86   'includes': [
87     '../../build/java_apk.gypi',
88     '../../build/android/jinja_template.gypi',
89   ],