OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 # This GYPI allows independent customization of the chrome shell in a manner | 5 # This GYPI allows independent customization of the chrome shell in a manner |
6 # similar to content shell (in content_shell.gypi). Notably, this file does | 6 # similar to content shell (in content_shell.gypi). Notably, this file does |
7 # NOT contain chrome_android_core, which is independent of the chrome shell | 7 # NOT contain chrome_android_core, which is independent of the chrome shell |
8 # and should be separately customized. | 8 # and should be separately customized. |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 ], | 135 ], |
136 'includes': [ '../build/apk_fake_jar.gypi' ], | 136 'includes': [ '../build/apk_fake_jar.gypi' ], |
137 }, | 137 }, |
138 { | 138 { |
139 'target_name': 'chrome_shell_paks', | 139 'target_name': 'chrome_shell_paks', |
140 'type': 'none', | 140 'type': 'none', |
141 'dependencies': [ | 141 'dependencies': [ |
142 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', | 142 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', |
143 '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources', | 143 '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources', |
144 ], | 144 ], |
| 145 'variables': { |
| 146 'android_locales_input_paks_folder': '<(PRODUCT_DIR)/locales/', |
| 147 'android_locales_output_paks_folder': '<(chrome_android_pak_output_folde
r)/', |
| 148 'additional_input_paths' : [ |
| 149 '<@(android_locales_output_paks)', |
| 150 ], |
| 151 }, |
145 'copies': [ | 152 'copies': [ |
146 { | 153 { |
147 'destination': '<(chrome_android_pak_output_folder)', | 154 'destination': '<(chrome_android_pak_output_folder)', |
148 'files': [ | 155 'files': [ |
| 156 '<@(android_locales_input_paks)', |
149 '<@(chrome_android_pak_input_resources)', | 157 '<@(chrome_android_pak_input_resources)', |
150 ], | 158 ], |
151 } | 159 } |
152 ], | 160 ], |
| 161 'includes': [ |
| 162 '../content/android_locales_paks.gypi', |
| 163 ], |
153 }, | 164 }, |
154 { | 165 { |
155 # GN: //chrome/android:chrome_sync_shell_manifest | 166 # GN: //chrome/android:chrome_sync_shell_manifest |
156 'target_name': 'chrome_sync_shell_manifest', | 167 'target_name': 'chrome_sync_shell_manifest', |
157 'type': 'none', | 168 'type': 'none', |
158 'variables': { | 169 'variables': { |
159 'jinja_inputs': ['android/sync_shell/java/AndroidManifest.xml.jinja2'], | 170 'jinja_inputs': ['android/sync_shell/java/AndroidManifest.xml.jinja2'], |
160 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/chrome_sync_shell_manifest/A
ndroidManifest.xml', | 171 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/chrome_sync_shell_manifest/A
ndroidManifest.xml', |
161 }, | 172 }, |
162 'includes': [ '../build/android/jinja_template.gypi' ], | 173 'includes': [ '../build/android/jinja_template.gypi' ], |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 'target_name': 'chrome_sync_shell_apk_java', | 208 'target_name': 'chrome_sync_shell_apk_java', |
198 'type': 'none', | 209 'type': 'none', |
199 'dependencies': [ | 210 'dependencies': [ |
200 'chrome_sync_shell_apk', | 211 'chrome_sync_shell_apk', |
201 ], | 212 ], |
202 'includes': [ '../build/apk_fake_jar.gypi' ], | 213 'includes': [ '../build/apk_fake_jar.gypi' ], |
203 }, | 214 }, |
204 ], | 215 ], |
205 | 216 |
206 } | 217 } |
OLD | NEW |