| 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 12 matching lines...) Expand all Loading... |
| 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_bootstrap#host', | 28 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 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 'runtime/dart-runtime.gyp:test_extension', | 31 'runtime/dart-runtime.gyp:test_extension', |
| 32 'runtime/dart-runtime.gyp:sample_extension', | 32 'runtime/dart-runtime.gyp:sample_extension', |
| 33 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
| 34 ], | 33 ], |
| 35 }, | 34 }, |
| 36 { | 35 { |
| 37 # This is the target that is built on the VM build bots. It | 36 # 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 | 37 # must depend on anything that is required by the VM test |
| 39 # suites. | 38 # suites. |
| 40 'target_name': 'runtime_precompiled', | 39 'target_name': 'runtime_precompiled', |
| 41 'type': 'none', | 40 'type': 'none', |
| 42 'dependencies': [ | 41 'dependencies': [ |
| 43 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 42 'runtime/dart-runtime.gyp:dart_precompiled_runtime', |
| 44 'runtime/dart-runtime.gyp:dart_bootstrap#host', | 43 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 45 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
| 46 ], | 44 ], |
| 47 }, | 45 }, |
| 48 { | 46 { |
| 49 # This is the target that is built on the VM build bots. It | 47 # 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 | 48 # must depend on anything that is required by the VM test |
| 51 # suites. | 49 # suites. |
| 52 'target_name': 'runtime_and_noopt', | 50 'target_name': 'runtime_and_noopt', |
| 53 'type': 'none', | 51 'type': 'none', |
| 54 'dependencies': [ | 52 'dependencies': [ |
| 55 'runtime/dart-runtime.gyp:dart', | 53 'runtime/dart-runtime.gyp:dart', |
| 56 'runtime/dart-runtime.gyp:dart_noopt', | 54 'runtime/dart-runtime.gyp:dart_noopt', |
| 57 'runtime/dart-runtime.gyp:dart_bootstrap#host', | 55 'runtime/dart-runtime.gyp:dart_bootstrap#host', |
| 58 'runtime/dart-runtime.gyp:run_vm_tests', | 56 'runtime/dart-runtime.gyp:run_vm_tests', |
| 59 'runtime/dart-runtime.gyp:process_test', | 57 'runtime/dart-runtime.gyp:process_test', |
| 60 'runtime/dart-runtime.gyp:test_extension', | 58 'runtime/dart-runtime.gyp:test_extension', |
| 61 'runtime/dart-runtime.gyp:sample_extension', | 59 'runtime/dart-runtime.gyp:sample_extension', |
| 62 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
| 63 ], | 60 ], |
| 64 }, | 61 }, |
| 65 | |
| 66 { | 62 { |
| 67 'target_name': 'create_sdk', | 63 'target_name': 'create_sdk', |
| 68 'type': 'none', | 64 'type': 'none', |
| 69 'dependencies': [ | 65 'dependencies': [ |
| 70 'create_sdk.gyp:create_sdk_internal', | 66 'create_sdk.gyp:create_sdk_internal', |
| 71 ], | 67 ], |
| 72 }, | 68 }, |
| 73 { | 69 { |
| 74 'target_name': 'dart2js', | 70 'target_name': 'dart2js', |
| 75 'type': 'none', | 71 'type': 'none', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ['OS!="android"', { | 119 ['OS!="android"', { |
| 124 'dependencies': [ | 120 'dependencies': [ |
| 125 'runtime/dart-runtime.gyp:sample_extension', | 121 'runtime/dart-runtime.gyp:sample_extension', |
| 126 ], | 122 ], |
| 127 }, | 123 }, |
| 128 ], | 124 ], |
| 129 ] | 125 ] |
| 130 }, | 126 }, |
| 131 ], | 127 ], |
| 132 } | 128 } |
| OLD | NEW |