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 'target_name': 'most', | 8 'target_name': 'most', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
11 'analysis_server', | 11 'analysis_server', |
12 'create_sdk', | 12 'create_sdk', |
13 'dart2js', | 13 'dart2js', |
14 'dartanalyzer', | 14 'dartanalyzer', |
15 'dartdevc', | 15 'dartdevc', |
16 'packages', | 16 'packages', |
17 'runtime', | 17 'runtime', |
18 'samples', | 18 'samples', |
19 ], | 19 ], |
20 }, | 20 }, |
21 { | 21 { |
22 # This is the target that is built on the VM build bots. It | 22 # This is the target that is built on the VM build bots. It |
23 # must depend on anything that is required by the VM test | 23 # must depend on anything that is required by the VM test |
24 # suites. | 24 # suites. |
25 'target_name': 'runtime', | 25 'target_name': 'runtime', |
26 'type': 'none', | 26 'type': 'none', |
27 'dependencies': [ | 27 'dependencies': [ |
28 'runtime/dart-runtime.gyp:dart', | 28 'runtime/dart-runtime.gyp:dart', |
| 29 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 30 'runtime/dart-runtime.gyp:run_vm_tests', |
| 31 'runtime/dart-runtime.gyp:process_test', |
| 32 'packages', |
| 33 'runtime/dart-runtime.gyp:test_extension', |
| 34 'runtime/dart-runtime.gyp:sample_extension', |
| 35 ], |
| 36 }, |
| 37 { |
| 38 # This is the target that is built on the VM build bots. It |
| 39 # must depend on anything that is required by the VM test |
| 40 # suites. |
| 41 'target_name': 'runtime_precompiled', |
| 42 'type': 'none', |
| 43 'dependencies': [ |
| 44 'runtime/dart-runtime.gyp:dart_precompiled_runtime', |
| 45 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 46 'packages', |
| 47 ], |
| 48 }, |
| 49 { |
| 50 # This is the target that is built on the VM build bots. It |
| 51 # must depend on anything that is required by the VM test |
| 52 # suites. |
| 53 'target_name': 'runtime_and_noopt', |
| 54 'type': 'none', |
| 55 'dependencies': [ |
| 56 'runtime/dart-runtime.gyp:dart', |
29 'runtime/dart-runtime.gyp:dart_noopt', | 57 'runtime/dart-runtime.gyp:dart_noopt', |
30 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | |
31 'runtime/dart-runtime.gyp:dart_bootstrap#host', | 58 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
32 'runtime/dart-runtime.gyp:run_vm_tests', | 59 'runtime/dart-runtime.gyp:run_vm_tests', |
33 'runtime/dart-runtime.gyp:process_test', | 60 'runtime/dart-runtime.gyp:process_test', |
34 'packages', | 61 'packages', |
35 'runtime/dart-runtime.gyp:test_extension', | 62 'runtime/dart-runtime.gyp:test_extension', |
36 'runtime/dart-runtime.gyp:sample_extension', | 63 'runtime/dart-runtime.gyp:sample_extension', |
37 ], | 64 ], |
38 }, | 65 }, |
39 { | 66 { |
40 'target_name': 'create_sdk', | 67 'target_name': 'create_sdk', |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 }, | 152 }, |
126 { | 153 { |
127 'target_name': 'try', | 154 'target_name': 'try', |
128 'type': 'none', | 155 'type': 'none', |
129 'dependencies': [ | 156 'dependencies': [ |
130 'site/try/build_try.gyp:try_site', | 157 'site/try/build_try.gyp:try_site', |
131 ], | 158 ], |
132 }, | 159 }, |
133 ], | 160 ], |
134 } | 161 } |
OLD | NEW |