| 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': [ |
| 11 'analysis_server', | 11 'analysis_server', |
| 12 'create_sdk', | 12 'create_sdk', |
| 13 'dart2js', | 13 'dart2js', |
| 14 'dartanalyzer', | 14 'dartanalyzer', |
| 15 'packages', | 15 'packages', |
| 16 'runtime', | 16 'runtime', |
| 17 'samples', | 17 'samples', |
| 18 ], | 18 ], |
| 19 }, | 19 }, |
| 20 { | 20 { |
| 21 # This is the target that is built on the VM build bots. It | 21 # This is the target that is built on the VM build bots. It |
| 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_noopt', |
| 28 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 29 'runtime/dart-runtime.gyp:dart_precompiled_runtime', |
| 29 'runtime/dart-runtime.gyp:dart_no_snapshot', | 30 'runtime/dart-runtime.gyp:dart_no_snapshot', |
| 30 'runtime/dart-runtime.gyp:run_vm_tests', | 31 'runtime/dart-runtime.gyp:run_vm_tests', |
| 31 'runtime/dart-runtime.gyp:process_test', | 32 'runtime/dart-runtime.gyp:process_test', |
| 32 'packages', | 33 'packages', |
| 33 'runtime/dart-runtime.gyp:test_extension', | 34 'runtime/dart-runtime.gyp:test_extension', |
| 34 'runtime/dart-runtime.gyp:sample_extension', | 35 'runtime/dart-runtime.gyp:sample_extension', |
| 35 ], | 36 ], |
| 36 }, | 37 }, |
| 37 { | 38 { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 }, | 117 }, |
| 117 { | 118 { |
| 118 'target_name': 'try', | 119 'target_name': 'try', |
| 119 'type': 'none', | 120 'type': 'none', |
| 120 'dependencies': [ | 121 'dependencies': [ |
| 121 'site/try/build_try.gyp:try_site', | 122 'site/try/build_try.gyp:try_site', |
| 122 ], | 123 ], |
| 123 }, | 124 }, |
| 124 ], | 125 ], |
| 125 } | 126 } |
| OLD | NEW |