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 dependencies. | |
| 9 'target_name': 'everything', | |
|
kustermann
2013/03/27 10:21:21
There should be no need for an 'everything' target
Andrei Mouravski
2013/03/27 17:45:40
I was following the example of skia: https://code.
kustermann
2013/04/02 10:34:25
I wasn't aware that it's named differently on Mac.
| |
| 10 'type': 'none', | |
| 11 'dependencies': [ | |
| 12 'most', | |
| 13 'api_docs', | |
| 14 ], | |
| 15 }, | |
| 16 { | |
| 17 # Contains all the dependencies that will run by default. | |
| 18 'target_name': 'most', | |
|
kustermann
2013/03/27 10:21:21
The name 'most' is not really descriptive. If some
Andrei Mouravski
2013/03/27 17:45:40
Is 'default' better?
kustermann
2013/04/02 10:34:25
I like 'default'.
| |
| 19 'type': 'none', | |
| 20 'dependencies': [ | |
| 21 'compiler', | |
| 22 'runtime', | |
| 23 'create_sdk', | |
| 24 'upload_sdk', | |
| 25 'dart2js', | |
| 26 'analyzer', | |
| 27 'dartc_bot', | |
| 28 'dart2js_bot', | |
| 29 'editor', | |
| 30 'samples', | |
| 31 'packages', | |
| 32 ], | |
| 33 }, | |
| 34 { | |
| 8 'target_name': 'compiler', | 35 'target_name': 'compiler', |
| 9 'type': 'none', | 36 'type': 'none', |
| 10 'dependencies': [ | 37 'dependencies': [ |
| 11 'compiler/dart-compiler.gyp:dart_analyzer', | 38 'compiler/dart-compiler.gyp:dart_analyzer', |
| 12 ], | 39 ], |
| 13 'actions': [] | 40 'actions': [] |
| 14 }, | 41 }, |
| 15 { | 42 { |
| 16 # This is the target that is built on the VM build bots. It | 43 # 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 | 44 # 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 }, | 214 }, |
| 188 { | 215 { |
| 189 'target_name': 'packages', | 216 'target_name': 'packages', |
| 190 'type': 'none', | 217 'type': 'none', |
| 191 'dependencies': [ | 218 'dependencies': [ |
| 192 'pkg/pkg.gyp:pkg_packages', | 219 'pkg/pkg.gyp:pkg_packages', |
| 193 ], | 220 ], |
| 194 }, | 221 }, |
| 195 ], | 222 ], |
| 196 } | 223 } |
| OLD | NEW |