| 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 10 matching lines...) Expand all Loading... |
| 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_noopt', | 29 'runtime/dart-runtime.gyp:dart_noopt', |
| 30 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 30 'runtime/dart-runtime.gyp:dart_precompiled_runtime', |
| 31 'runtime/dart-runtime.gyp:dart_product', | |
| 32 'runtime/dart-runtime.gyp:dart_bootstrap#host', | 31 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 33 'runtime/dart-runtime.gyp:run_vm_tests', | 32 'runtime/dart-runtime.gyp:run_vm_tests', |
| 34 'runtime/dart-runtime.gyp:process_test', | 33 'runtime/dart-runtime.gyp:process_test', |
| 35 'packages', | 34 'packages', |
| 36 'runtime/dart-runtime.gyp:test_extension', | 35 'runtime/dart-runtime.gyp:test_extension', |
| 37 'runtime/dart-runtime.gyp:sample_extension', | 36 'runtime/dart-runtime.gyp:sample_extension', |
| 38 ], | 37 ], |
| 39 }, | 38 }, |
| 40 { | 39 { |
| 41 'target_name': 'create_sdk', | 40 'target_name': 'create_sdk', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 }, | 125 }, |
| 127 { | 126 { |
| 128 'target_name': 'try', | 127 'target_name': 'try', |
| 129 'type': 'none', | 128 'type': 'none', |
| 130 'dependencies': [ | 129 'dependencies': [ |
| 131 'site/try/build_try.gyp:try_site', | 130 'site/try/build_try.gyp:try_site', |
| 132 ], | 131 ], |
| 133 }, | 132 }, |
| 134 ], | 133 ], |
| 135 } | 134 } |
| OLD | NEW |