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

Unified Diff: dart.gyp

Issue 13100003: Made the default build target "most" which currently contains everything except (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart.gyp
diff --git a/dart.gyp b/dart.gyp
index 7f5ec3057ee94e474a26d53804e0f1a328ca5d6d..a40eae5ce827a5954c61b49bb83221ebb61bdced 100644
--- a/dart.gyp
+++ b/dart.gyp
@@ -5,6 +5,36 @@
{
'targets': [
{
+ # Contains all dependencies.
+ 'target_name': 'everything',
+ 'type': 'none',
+ 'dependencies': [
+ # Most dependencies.
+ 'default',
+ # All other targets.
+ 'api_docs',
+ 'dartc_bot',
+ 'dart2js_bot',
+ ],
+ },
+ {
+ # Contains all the dependencies that will run by default.
+ # Excludes api_docs.
+ 'target_name': 'default',
+ 'type': 'none',
+ 'dependencies': [
+ 'analyzer',
+ 'compiler',
+ 'create_sdk',
+ 'dart2js',
+ 'editor',
+ 'packages',
+ 'runtime',
+ 'samples',
+ 'upload_sdk',
+ ],
+ },
+ {
'target_name': 'compiler',
'type': 'none',
'dependencies': [
« 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