Chromium Code Reviews| 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 the dependencies that will run by default. | |
| 9 # Excludes api_docs. | |
| 10 'target_name': 'default', | |
| 11 'type': 'none', | |
| 12 'dependencies': [ | |
| 13 'compiler', | |
| 14 'runtime', | |
| 15 'create_sdk', | |
| 16 'upload_sdk', | |
| 17 'dart2js', | |
| 18 'analyzer', | |
| 19 'dartc_bot', | |
| 20 'dart2js_bot', | |
| 21 'editor', | |
| 22 'samples', | |
| 23 'packages', | |
|
kustermann
2013/04/02 10:34:25
You could sort these dependencies alphabetically.
Andrei Mouravski
2013/04/02 20:51:56
Done.
| |
| 24 ], | |
|
kustermann
2013/04/02 10:34:25
I would remove 'dartc_bot' and 'dart2js_bot' here.
Andrei Mouravski
2013/04/02 20:51:56
Done.
| |
| 25 }, | |
| 26 { | |
| 8 'target_name': 'compiler', | 27 'target_name': 'compiler', |
| 9 'type': 'none', | 28 'type': 'none', |
| 10 'dependencies': [ | 29 'dependencies': [ |
| 11 'compiler/dart-compiler.gyp:dart_analyzer', | 30 'compiler/dart-compiler.gyp:dart_analyzer', |
| 12 ], | 31 ], |
| 13 'actions': [] | 32 'actions': [] |
| 14 }, | 33 }, |
| 15 { | 34 { |
| 16 # This is the target that is built on the VM build bots. It | 35 # This is the target that is built on the VM build bots. It |
| 17 # must depend on anything that is required by the VM test | 36 # must depend on anything that is required by the VM test |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 187 }, | 206 }, |
| 188 { | 207 { |
| 189 'target_name': 'packages', | 208 'target_name': 'packages', |
| 190 'type': 'none', | 209 'type': 'none', |
| 191 'dependencies': [ | 210 'dependencies': [ |
| 192 'pkg/pkg.gyp:pkg_packages', | 211 'pkg/pkg.gyp:pkg_packages', |
| 193 ], | 212 ], |
| 194 }, | 213 }, |
| 195 ], | 214 ], |
| 196 } | 215 } |
| OLD | NEW |