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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/courgette.gyp
===================================================================
--- courgette/courgette.gyp (revision 218027)
+++ courgette/courgette.gyp (working copy)
@@ -203,5 +203,32 @@
},
],
}],
+ # The build infrastructure needs courgette to be named courgette64.
+ ['OS=="win" and target_arch=="x64"', {
+ 'targets': [
+ {
+ 'target_name': 'courgette64',
+ 'type': 'none',
+ 'dependencies': [
+ 'courgette',
+ ],
+ 'actions': [{
+ 'action_name': 'courgette64',
+ 'inputs': [
+ '<(PRODUCT_DIR)/courgette.exe',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/courgette64.exe',
+ ],
+ 'action': [
+ 'python',
+ '../build/cp.py',
+ '<@(_inputs)',
+ '<@(_outputs)'
+ ],
+ }],
+ },
+ ],
+ }],
],
}
« 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