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

Unified Diff: tools/build.py

Issue 13754002: Removed the temporary "packages" dependency of create_sdk and switched to "default" target in build… (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 886749f6ef77e868f687e1571867cc989ebdffca..67d994c32ca46697514af1a46cffeadab872880c 100755
--- a/tools/build.py
+++ b/tools/build.py
@@ -309,10 +309,9 @@ def Main():
return 1
# Determine which targets to build. By default we build the "all" target.
if len(args) == 0:
- if HOST_OS == 'macos':
- target = 'All'
- else:
- target = 'all'
+ # Note: The 'default' target doesn't depend on all targets. Developers have
+ # requested to exclude certain targets to keep build times down.
+ target = 'default'
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