Add test_runner support for new accessibility event
[chromium-blink-merge.git] / android_webview / apk / system_webview_apk_common.gypi
blob94c730c168023fc45b2387f3279591ebfb28b4cf
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': 'pak,bin,dat',
21     'asset_location': '<(INTERMEDIATE_DIR)/assets/',
22     'snapshot_copy_files': '<(snapshot_copy_files)',
23     # TODO: crbug.com/442348 Update proguard.flags and re-enable.
24     'proguard_enabled': 'false',
25     'proguard_flags_paths': ['<(DEPTH)/android_webview/apk/java/proguard.flags'],
26     # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
27     'additional_input_paths': [
28       '<@(webview_locales_output_paks)',
29       '<(asset_location)/webviewchromium.pak',
30       '<(asset_location)/webview_licenses.notice',
31       '<@(snapshot_additional_input_paths)',
32     ],
33     'includes': [
34       '../snapshot_copying.gypi',
35     ],
36     'conditions': [
37       ['icu_use_data_file_flag==1', {
38         'additional_input_paths': [
39           '<(asset_location)/icudtl.dat',
40         ],
41       }],
42     ],
43   },
44   'copies': [
45     {
46       'destination': '<(asset_location)',
47       'files': [
48         '<@(webview_locales_input_paks)',
49         '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
50         '<@(snapshot_copy_files)',
51       ],
52       'conditions': [
53         ['icu_use_data_file_flag==1', {
54           'files': [
55             '<(PRODUCT_DIR)/icudtl.dat',
56           ],
57         }],
58       ],
59     },
60   ],
61   'actions': [
62     {
63       'action_name': 'generate_webview_license_notice',
64       'inputs': [
65         '<!@(python <(DEPTH)/android_webview/tools/webview_licenses.py notice_deps)',
66         '<(DEPTH)/android_webview/tools/licenses_notice.tmpl',
67         '<(DEPTH)/android_webview/tools/webview_licenses.py',
68       ],
69       'outputs': [
70         '<(asset_location)/webview_licenses.notice',
71       ],
72       'action': [
73         'python',
74         '<(DEPTH)/android_webview/tools/webview_licenses.py',
75         'notice',
76         '<(asset_location)/webview_licenses.notice',
77       ],
78       'message': 'Generating WebView license notice',
79     },
80   ],
81   'includes': [
82     'system_webview_locales_paks.gypi',
83     '../../build/java_apk.gypi',
84   ],