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': [ |
(...skipping 28 matching lines...) Expand all Loading... |
39 # suites. | 39 # suites. |
40 'target_name': 'runtime_precompiled', | 40 'target_name': 'runtime_precompiled', |
41 'type': 'none', | 41 'type': 'none', |
42 'dependencies': [ | 42 'dependencies': [ |
43 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 43 'runtime/dart-runtime.gyp:dart_precompiled_runtime', |
44 'runtime/dart-runtime.gyp:dart_bootstrap#host', | 44 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
45 'runtime/dart-runtime.gyp:process_test', | 45 'runtime/dart-runtime.gyp:process_test', |
46 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | 46 'runtime/dart-runtime.gyp:generate_patched_sdk#host', |
47 ], | 47 ], |
48 }, | 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', | |
57 'runtime/dart-runtime.gyp:dart_noopt', | |
58 'runtime/dart-runtime.gyp:dart_bootstrap#host', | |
59 'runtime/dart-runtime.gyp:run_vm_tests', | |
60 'runtime/dart-runtime.gyp:process_test', | |
61 'runtime/dart-runtime.gyp:test_extension', | |
62 'runtime/dart-runtime.gyp:sample_extension', | |
63 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
64 ], | |
65 }, | |
66 | 49 |
67 { | 50 { |
68 'target_name': 'create_sdk', | 51 'target_name': 'create_sdk', |
69 'type': 'none', | 52 'type': 'none', |
70 'dependencies': [ | 53 'dependencies': [ |
71 'create_sdk.gyp:create_sdk_internal', | 54 'create_sdk.gyp:create_sdk_internal', |
72 ], | 55 ], |
73 }, | 56 }, |
74 { | 57 { |
75 'target_name': 'dart2js', | 58 'target_name': 'dart2js', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 ['OS!="android"', { | 107 ['OS!="android"', { |
125 'dependencies': [ | 108 'dependencies': [ |
126 'runtime/dart-runtime.gyp:sample_extension', | 109 'runtime/dart-runtime.gyp:sample_extension', |
127 ], | 110 ], |
128 }, | 111 }, |
129 ], | 112 ], |
130 ] | 113 ] |
131 }, | 114 }, |
132 ], | 115 ], |
133 } | 116 } |
OLD | NEW |