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

Side by Side Diff: dart.gyp

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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/build.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # Contains all dependencies. 8 # Contains all dependencies.
9 'target_name': 'everything', 9 'target_name': 'everything',
10 'type': 'none', 10 'type': 'none',
11 'dependencies': [ 11 'dependencies': [
12 # Most dependencies. 12 # Most dependencies.
13 'default', 13 'most',
14 # All other targets. 14 # All other targets.
15 'api_docs', 15 'api_docs',
16 'dartc_bot', 16 'dartc_bot',
17 'dart2js_bot', 17 'dart2js_bot',
18 'dart2dart_bot', 18 'dart2dart_bot',
19 ], 19 ],
20 }, 20 },
21 { 21 {
22 # Contains all the dependencies that will run by default. 22 'target_name': 'most',
23 # Excludes api_docs.
24 'target_name': 'default',
25 'type': 'none', 23 'type': 'none',
26 'dependencies': [ 24 'dependencies': [
27 'analyzer', 25 'analyzer',
28 'compiler', 26 'compiler',
29 'create_sdk', 27 'create_sdk',
30 'dart2js', 28 'dart2js',
31 'editor', 29 'editor',
32 'packages', 30 'packages',
33 'runtime', 31 'runtime',
34 'samples', 32 'samples',
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 }, 227 },
230 { 228 {
231 'target_name': 'packages', 229 'target_name': 'packages',
232 'type': 'none', 230 'type': 'none',
233 'dependencies': [ 231 'dependencies': [
234 'pkg/pkg.gyp:pkg_packages', 232 'pkg/pkg.gyp:pkg_packages',
235 ], 233 ],
236 }, 234 },
237 ], 235 ],
238 } 236 }
OLDNEW
« no previous file with comments | « no previous file | tools/build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698