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

Side by Side Diff: courgette/courgette.gyp

Issue 23050007: Copy courgette.exe to courgette64.exe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 4 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
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 7 'chromium_code': 1,
8 'courgette_lib_sources': [ 8 'courgette_lib_sources': [
9 'adjustment_method.cc', 9 'adjustment_method.cc',
10 'adjustment_method_2.cc', 10 'adjustment_method_2.cc',
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 '../base/base.gyp:base_nacl_win64', 196 '../base/base.gyp:base_nacl_win64',
197 ], 197 ],
198 'configurations': { 198 'configurations': {
199 'Common_Base': { 199 'Common_Base': {
200 'msvs_target_platform': 'x64', 200 'msvs_target_platform': 'x64',
201 }, 201 },
202 }, 202 },
203 }, 203 },
204 ], 204 ],
205 }], 205 }],
206 # The build infrastructure needs courgette to be named courgette64.
207 ['OS=="win" and target_arch=="x64"', {
208 'targets': [
209 {
210 'target_name': 'courgette64',
211 'type': 'none',
212 'dependencies': [
213 'courgette',
214 ],
215 'actions': [{
216 'action_name': 'courgette64',
217 'inputs': [
218 '<(PRODUCT_DIR)/courgette.exe',
219 ],
220 'outputs': [
221 '<(PRODUCT_DIR)/courgette64.exe',
222 ],
223 'action': [
224 'python',
225 '../build/cp.py',
226 '<@(_inputs)',
227 '<@(_outputs)'
228 ],
229 }],
230 },
231 ],
232 }],
206 ], 233 ],
207 } 234 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698