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

Unified Diff: tools/build.py

Issue 9005014: Fix windows VM build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
===================================================================
--- tools/build.py (revision 2649)
+++ tools/build.py (working copy)
@@ -119,13 +119,20 @@
project_file = 'dart.sln'
if os.path.exists('dart-%s.gyp' % CurrentDirectoryBaseName()):
project_file = 'dart-%s.sln' % CurrentDirectoryBaseName()
- args = [options.devenv + os.sep + 'devenv.com',
- '/build',
- build_config,
- '/project',
- target,
- project_file
- ]
+ if target == 'all':
Ivan Posva 2011/12/20 18:18:42 Please do not use TABS.
+ args = [options.devenv + os.sep + 'devenv.com',
+ '/build',
+ build_config,
+ project_file
+ ]
+ else:
+ args = [options.devenv + os.sep + 'devenv.com',
+ '/build',
+ build_config,
+ '/project',
+ target,
+ project_file
+ ]
else:
make = 'make'
if HOST_OS == 'freebsd':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698