OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |