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 11 matching lines...) Expand all Loading... |
22 # must depend on anything that is required by the VM test | 22 # must depend on anything that is required by the VM test |
23 # suites. | 23 # suites. |
24 'target_name': 'runtime', | 24 'target_name': 'runtime', |
25 'type': 'none', | 25 'type': 'none', |
26 'dependencies': [ | 26 'dependencies': [ |
27 'runtime/dart-runtime.gyp:dart', | 27 'runtime/dart-runtime.gyp:dart', |
28 'runtime/dart-runtime.gyp:dart_no_snapshot', | 28 'runtime/dart-runtime.gyp:dart_no_snapshot', |
29 'runtime/dart-runtime.gyp:run_vm_tests', | 29 'runtime/dart-runtime.gyp:run_vm_tests', |
30 'runtime/dart-runtime.gyp:process_test', | 30 'runtime/dart-runtime.gyp:process_test', |
31 'packages', | 31 'packages', |
32 ], | 32 'runtime/dart-runtime.gyp:test_extension', |
33 'conditions': [ | 33 'runtime/dart-runtime.gyp:sample_extension', |
34 ['OS!="android"', { | |
35 'dependencies': [ | |
36 'runtime/dart-runtime.gyp:test_extension', | |
37 'runtime/dart-runtime.gyp:sample_extension', | |
38 ], | |
39 }], | |
40 ], | 34 ], |
41 }, | 35 }, |
42 { | 36 { |
43 'target_name': 'create_sdk', | 37 'target_name': 'create_sdk', |
44 'type': 'none', | 38 'type': 'none', |
45 'dependencies': [ | 39 'dependencies': [ |
46 'runtime/dart-runtime.gyp:dart', | 40 'runtime/dart-runtime.gyp:dart', |
47 'utils/compiler/compiler.gyp:dart2js', | 41 'utils/compiler/compiler.gyp:dart2js', |
48 'utils/pub/pub.gyp:pub', | 42 'utils/pub/pub.gyp:pub', |
49 'analyzer', | 43 'analyzer', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 }, | 179 }, |
186 { | 180 { |
187 'target_name': 'packages', | 181 'target_name': 'packages', |
188 'type': 'none', | 182 'type': 'none', |
189 'dependencies': [ | 183 'dependencies': [ |
190 'pkg/pkg.gyp:pkg_packages', | 184 'pkg/pkg.gyp:pkg_packages', |
191 ], | 185 ], |
192 }, | 186 }, |
193 ], | 187 ], |
194 } | 188 } |
OLD | NEW |