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

Unified Diff: tools/build.py

Issue 13674027: Change back to building everything if no argument to build.py was given (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « dart.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
diff --git a/tools/build.py b/tools/build.py
index 67d994c32ca46697514af1a46cffeadab872880c..886749f6ef77e868f687e1571867cc989ebdffca 100755
--- a/tools/build.py
+++ b/tools/build.py
@@ -309,9 +309,10 @@ def Main():
return 1
# Determine which targets to build. By default we build the "all" target.
if len(args) == 0:
- # Note: The 'default' target doesn't depend on all targets. Developers have
- # requested to exclude certain targets to keep build times down.
- target = 'default'
+ if HOST_OS == 'macos':
+ target = 'All'
+ else:
+ target = 'all'
else:
target = args[0]
« no previous file with comments | « dart.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698