Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / android_webview / apk / system_webview_apk_common.gypi
bloba777c10a6be83562ea5b367cbb02b53bdb2da7db
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     'never_lint': 1,
17     'R_package': 'com.android.webview.chromium',
18     'R_package_relpath': 'com/android/webview/chromium',
19     'shared_resources': 1,
20     'extensions_to_not_compress': '.lpak,.pak,.bin,.dat',
21     'asset_location': '<(INTERMEDIATE_DIR)/assets/',
22     'snapshot_copy_files': '<(snapshot_copy_files)',
23     'jinja_inputs': ['<(android_manifest_template_path)'],
24     'jinja_output': '<(INTERMEDIATE_DIR)/AndroidManifest.xml',
25     'jinja_variables': [ '<@(android_manifest_template_vars)' ],
26     'android_manifest_template_vars': [ ],
27     'android_manifest_template_path': '<(DEPTH)/android_webview/apk/java/AndroidManifest.xml',
28     'android_manifest_path': '<(jinja_output)',
29     'proguard_enabled': 'true',
30     'proguard_flags_paths': ['<(DEPTH)/android_webview/apk/java/proguard.flags'],
31     # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
32     'additional_input_paths': [
33       '<(asset_location)/webviewchromium.pak',
34       '<(asset_location)/webview_licenses.notice',
35       '<@(snapshot_additional_input_paths)',
36     ],
37     'includes': [
38       '../snapshot_copying.gypi',
39     ],
40     'conditions': [
41       ['icu_use_data_file_flag==1', {
42         'additional_input_paths': [
43           '<(asset_location)/icudtl.dat',
44         ],
45       }],
46     ],
47   },
48   'copies': [
49     {
50       'destination': '<(asset_location)',
51       'files': [
52         '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
53         '<@(snapshot_copy_files)',
54       ],
55       'conditions': [
56         ['icu_use_data_file_flag==1', {
57           'files': [
58             '<(PRODUCT_DIR)/icudtl.dat',
59           ],
60         }],
61       ],
62     },
63   ],
64   'actions': [
65     {
66       'action_name': 'generate_webview_license_notice',
67       'inputs': [
68         '<!@(python <(DEPTH)/android_webview/tools/webview_licenses.py notice_deps)',
69         '<(DEPTH)/android_webview/tools/licenses_notice.tmpl',
70         '<(DEPTH)/android_webview/tools/webview_licenses.py',
71       ],
72       'outputs': [
73         '<(asset_location)/webview_licenses.notice',
74       ],
75       'action': [
76         'python',
77         '<(DEPTH)/android_webview/tools/webview_licenses.py',
78         'notice',
79         '<(asset_location)/webview_licenses.notice',
80       ],
81       'message': 'Generating WebView license notice',
82     },
83   ],
84   'includes': [
85     '../../build/java_apk.gypi',
86     '../../build/android/jinja_template.gypi',
87   ],