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