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

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: More style. 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'chromevox_resources', 11 'target_name': 'chromevox_resources',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 'chromevox_assets', 14 'chromevox_assets',
15 'chromevox_guest_manifest',
15 'chromevox_static_files', 16 'chromevox_static_files',
16 'chromevox_strings', 17 'chromevox_strings',
17 'chromevox_uncompiled_js_files', 18 'chromevox_uncompiled_js_files',
18 '<(DEPTH)/chrome/third_party/chromevox/chromevox.gyp:chromevox_third_par ty_resources', 19 '<(DEPTH)/chrome/third_party/chromevox/chromevox.gyp:chromevox_third_par ty_resources',
19 ], 20 ],
20 'conditions': [ 21 'conditions': [
21 ['disable_nacl==0 and disable_nacl_untrusted==0', { 22 ['disable_nacl==0 and disable_nacl_untrusted==0', {
22 'dependencies': [ 23 'dependencies': [
23 '<(DEPTH)/third_party/liblouis/liblouis_nacl.gyp:liblouis_nacl_wrapp er_nacl', 24 '<(DEPTH)/third_party/liblouis/liblouis_nacl.gyp:liblouis_nacl_wrapp er_nacl',
24 ], 25 ],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 # TODO(plundblad): Change to use PRODUCT_DIR when we have 175 # TODO(plundblad): Change to use PRODUCT_DIR when we have
175 # translations. 176 # translations.
176 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/chrom evox', 177 '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. 178 # We don't generate any RC files, so no resource_ds file is needed.
178 'grit_resource_ids': '', 179 'grit_resource_ids': '',
179 }, 180 },
180 'includes': [ '../../../../../build/grit_action.gypi' ], 181 'includes': [ '../../../../../build/grit_action.gypi' ],
181 }, 182 },
182 ], 183 ],
183 }, 184 },
185 {
186 'target_name': 'chromevox_guest_manifest',
187 'type': 'none',
188 'variables': {
189 'base_manifest': 'manifest.json',
190 'override_manifest': 'manifest_guest_overrides.json',
Peter Lundblad 2014/05/22 00:28:25 Shouldn't have build rules that generate files int
David Tseng 2014/05/22 02:42:04 The first suggestion would deviate from how other
191 'output_manifest': 'manifest_guest.json',
192 },
193 'includes': [ 'merge_manifests.gypi', ],
194 },
184 ], 195 ],
185 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698