Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox.gyp

Issue 295123002: Provide script/gypi support for manifest generation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromevox_dest_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox', 7 'chromevox_dest_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox',
8 'template_manifest': 'manifest.json.jinja2',
8 }, 9 },
9 'targets': [ 10 'targets': [
10 { 11 {
11 'target_name': 'chromevox_resources', 12 'target_name': 'chromevox_resources',
12 'type': 'none', 13 'type': 'none',
13 'dependencies': [ 14 'dependencies': [
14 'chromevox_assets', 15 'chromevox_assets',
16 'chromevox_manifest',
17 'chromevox_guest_manifest',
15 'chromevox_static_files', 18 'chromevox_static_files',
16 'chromevox_strings', 19 'chromevox_strings',
17 'chromevox_uncompiled_js_files', 20 'chromevox_uncompiled_js_files',
18 '<(DEPTH)/chrome/third_party/chromevox/chromevox.gyp:chromevox_third_par ty_resources', 21 '<(DEPTH)/chrome/third_party/chromevox/chromevox.gyp:chromevox_third_par ty_resources',
19 ], 22 ],
20 'conditions': [ 23 'conditions': [
21 ['disable_nacl==0 and disable_nacl_untrusted==0', { 24 ['disable_nacl==0 and disable_nacl_untrusted==0', {
22 'dependencies': [ 25 'dependencies': [
23 '<(DEPTH)/third_party/liblouis/liblouis_nacl.gyp:liblouis_nacl_wrapp er_nacl', 26 '<(DEPTH)/third_party/liblouis/liblouis_nacl.gyp:liblouis_nacl_wrapp er_nacl',
24 ], 27 ],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 # TODO(plundblad): Change to use PRODUCT_DIR when we have 177 # TODO(plundblad): Change to use PRODUCT_DIR when we have
175 # translations. 178 # translations.
176 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/chrom evox', 179 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/chrom evox',
177 # We don't generate any RC files, so no resource_ds file is needed. 180 # We don't generate any RC files, so no resource_ds file is needed.
178 'grit_resource_ids': '', 181 'grit_resource_ids': '',
179 }, 182 },
180 'includes': [ '../../../../../build/grit_action.gypi' ], 183 'includes': [ '../../../../../build/grit_action.gypi' ],
181 }, 184 },
182 ], 185 ],
183 }, 186 },
187 {
188 'target_name': 'chromevox_manifest',
189 'type': 'none',
190 'variables': {
191 'output_manifest': '<(chromevox_dest_dir)/manifest.json',
192 },
193 'includes': [ 'generate_manifest.gypi', ],
194 },
195 {
196 'target_name': 'chromevox_guest_manifest',
197 'type': 'none',
198 'variables': {
199 'output_manifest': '<(chromevox_dest_dir)/manifest_guest.json',
200 'is_guest_manifest': 1,
201 },
202 'includes': [ 'generate_manifest.gypi', ],
203 },
184 ], 204 ],
185 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698