| 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. | |
| 9 'target_name': 'everything', | |
| 10 'type': 'none', | |
| 11 'dependencies': [ | |
| 12 # Most dependencies. | |
| 13 'most', | |
| 14 # All other targets. | |
| 15 'api_docs', | |
| 16 'dartc_bot', | |
| 17 'dart2js_bot', | |
| 18 'dart2dart_bot', | |
| 19 ], | |
| 20 }, | |
| 21 { | |
| 22 'target_name': 'most', | 8 'target_name': 'most', |
| 23 'type': 'none', | 9 'type': 'none', |
| 24 'dependencies': [ | 10 'dependencies': [ |
| 25 'analyzer', | 11 'analyzer', |
| 26 'compiler', | 12 'compiler', |
| 27 'create_sdk', | 13 'create_sdk', |
| 28 'dart2js', | 14 'dart2js', |
| 29 'editor', | 15 'editor', |
| 30 'packages', | 16 'packages', |
| 31 'runtime', | 17 'runtime', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 }, | 214 }, |
| 229 { | 215 { |
| 230 'target_name': 'packages', | 216 'target_name': 'packages', |
| 231 'type': 'none', | 217 'type': 'none', |
| 232 'dependencies': [ | 218 'dependencies': [ |
| 233 'pkg/pkg.gyp:pkg_packages', | 219 'pkg/pkg.gyp:pkg_packages', |
| 234 ], | 220 ], |
| 235 }, | 221 }, |
| 236 ], | 222 ], |
| 237 } | 223 } |
| OLD | NEW |