OLD | NEW |
1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 'system_webview_package_name%': 'com.android.webview', | 7 'system_webview_package_name%': 'com.android.webview', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'outputs': [ | 115 'outputs': [ |
116 '<(PRODUCT_DIR)/natives_blob_<(arch_suffix).bin', | 116 '<(PRODUCT_DIR)/natives_blob_<(arch_suffix).bin', |
117 ], | 117 ], |
118 'action': [ | 118 'action': [ |
119 'python', | 119 'python', |
120 '<(DEPTH)/build/cp.py', | 120 '<(DEPTH)/build/cp.py', |
121 '<@(_inputs)', | 121 '<@(_inputs)', |
122 '<@(_outputs)', | 122 '<@(_outputs)', |
123 ], | 123 ], |
124 }, | 124 }, |
| 125 { |
| 126 'action_name': 'generate_webview_license_notice', |
| 127 'inputs': [ |
| 128 '<!@(python <(DEPTH)/android_webview/tools/webview_licenses.py notic
e_deps)', |
| 129 '<(DEPTH)/android_webview/tools/licenses_notice.tmpl', |
| 130 '<(DEPTH)/android_webview/tools/webview_licenses.py', |
| 131 ], |
| 132 'outputs': [ |
| 133 '<(webview_licenses_path)', |
| 134 ], |
| 135 'action': [ |
| 136 'python', |
| 137 '<(DEPTH)/android_webview/tools/webview_licenses.py', |
| 138 'notice', |
| 139 '<(webview_licenses_path)', |
| 140 ], |
| 141 'message': 'Generating WebView license notice', |
| 142 }, |
125 ], | 143 ], |
126 }, | 144 }, |
127 { | 145 { |
128 'target_name': 'android_webview_locale_paks', | 146 'target_name': 'android_webview_locale_paks', |
129 'type': 'none', | 147 'type': 'none', |
130 'variables': { | 148 'variables': { |
131 'locale_pak_files': [ | 149 'locale_pak_files': [ |
132 '<@(webview_locales_input_common_paks)', | 150 '<@(webview_locales_input_common_paks)', |
133 '<@(webview_locales_input_individual_paks)', | 151 '<@(webview_locales_input_individual_paks)', |
134 ], | 152 ], |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 'android_manifest_template_vars': ['package=<(system_webview_package_nam
e)'], | 474 'android_manifest_template_vars': ['package=<(system_webview_package_nam
e)'], |
457 }, | 475 }, |
458 'includes': [ 'apk/system_webview_apk_common.gypi' ], | 476 'includes': [ 'apk/system_webview_apk_common.gypi' ], |
459 }, | 477 }, |
460 ], | 478 ], |
461 'includes': [ | 479 'includes': [ |
462 'android_webview_tests.gypi', | 480 'android_webview_tests.gypi', |
463 'apk/system_webview_paks.gypi', | 481 'apk/system_webview_paks.gypi', |
464 ], | 482 ], |
465 } | 483 } |
OLD | NEW |