| 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 24 matching lines...) Expand all Loading... |
| 35 }, | 35 }, |
| 36 { | 36 { |
| 37 # This is the target that is built on the VM build bots. It | 37 # This is the target that is built on the VM build bots. It |
| 38 # must depend on anything that is required by the VM test | 38 # must depend on anything that is required by the VM test |
| 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:generate_patched_sdk#host', | 46 'runtime/dart-runtime.gyp:generate_patched_sdk#host', |
| 46 ], | 47 ], |
| 47 }, | 48 }, |
| 48 { | 49 { |
| 49 # This is the target that is built on the VM build bots. It | 50 # This is the target that is built on the VM build bots. It |
| 50 # must depend on anything that is required by the VM test | 51 # must depend on anything that is required by the VM test |
| 51 # suites. | 52 # suites. |
| 52 'target_name': 'runtime_and_noopt', | 53 'target_name': 'runtime_and_noopt', |
| 53 'type': 'none', | 54 'type': 'none', |
| 54 'dependencies': [ | 55 'dependencies': [ |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ['OS!="android"', { | 124 ['OS!="android"', { |
| 124 'dependencies': [ | 125 'dependencies': [ |
| 125 'runtime/dart-runtime.gyp:sample_extension', | 126 'runtime/dart-runtime.gyp:sample_extension', |
| 126 ], | 127 ], |
| 127 }, | 128 }, |
| 128 ], | 129 ], |
| 129 ] | 130 ] |
| 130 }, | 131 }, |
| 131 ], | 132 ], |
| 132 } | 133 } |
| OLD | NEW |