| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'most', | |
| 9 'type': 'none', | |
| 10 'dependencies': [ | |
| 11 'analysis_server', | |
| 12 'create_sdk', | |
| 13 'dart2js', | |
| 14 'dartanalyzer', | |
| 15 'dartdevc', | |
| 16 'runtime', | |
| 17 'samples', | |
| 18 ], | |
| 19 }, | |
| 20 { | |
| 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 | |
| 23 # suites. | |
| 24 'target_name': 'runtime', | |
| 25 'type': 'none', | |
| 26 'dependencies': [ | |
| 27 'runtime/dart-runtime.gyp:dart', | |
| 28 'runtime/dart-runtime.gyp:dart_bootstrap#host', | |
| 29 'runtime/dart-runtime.gyp:run_vm_tests', | |
| 30 'runtime/dart-runtime.gyp:process_test', | |
| 31 'runtime/dart-runtime.gyp:test_extension', | |
| 32 'runtime/dart-runtime.gyp:sample_extension', | |
| 33 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
| 34 ], | |
| 35 }, | |
| 36 { | |
| 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 | |
| 39 # suites. | |
| 40 'target_name': 'runtime_precompiled', | |
| 41 'type': 'none', | |
| 42 'dependencies': [ | |
| 43 'runtime/dart-runtime.gyp:dart_precompiled_runtime', | |
| 44 'runtime/dart-runtime.gyp:dart_bootstrap#host', | |
| 45 'runtime/dart-runtime.gyp:process_test', | |
| 46 'runtime/dart-runtime.gyp:generate_patched_sdk#host', | |
| 47 ], | |
| 48 }, | |
| 49 | |
| 50 { | |
| 51 'target_name': 'create_sdk', | |
| 52 'type': 'none', | |
| 53 'dependencies': [ | |
| 54 'create_sdk.gyp:create_sdk_internal', | |
| 55 ], | |
| 56 }, | |
| 57 { | |
| 58 'target_name': 'dart2js', | |
| 59 'type': 'none', | |
| 60 'dependencies': [ | |
| 61 'utils/compiler/compiler.gyp:dart2js', | |
| 62 ], | |
| 63 }, | |
| 64 { | |
| 65 'target_name': 'dartanalyzer', | |
| 66 'type': 'none', | |
| 67 'dependencies': [ | |
| 68 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', | |
| 69 ], | |
| 70 }, | |
| 71 { | |
| 72 'target_name': 'dartdevc', | |
| 73 'type': 'none', | |
| 74 'dependencies': [ | |
| 75 'utils/dartdevc/dartdevc.gyp:dartdevc', | |
| 76 ], | |
| 77 }, | |
| 78 { | |
| 79 'target_name': 'dartfmt', | |
| 80 'type': 'none', | |
| 81 'dependencies': [ | |
| 82 'utils/dartfmt/dartfmt.gyp:dartfmt', | |
| 83 ], | |
| 84 }, | |
| 85 { | |
| 86 'target_name': 'analysis_server', | |
| 87 'type': 'none', | |
| 88 'dependencies': [ | |
| 89 'utils/analysis_server/analysis_server.gyp:analysis_server', | |
| 90 ], | |
| 91 }, | |
| 92 { | |
| 93 # This is the target that is built on the dart2js build bots. | |
| 94 # It must depend on anything that is required by the dart2js | |
| 95 # test suites. | |
| 96 'target_name': 'dart2js_bot', | |
| 97 'type': 'none', | |
| 98 'dependencies': [ | |
| 99 'create_sdk', | |
| 100 ], | |
| 101 }, | |
| 102 { | |
| 103 'target_name': 'samples', | |
| 104 'type': 'none', | |
| 105 'dependencies': [], | |
| 106 'conditions': [ | |
| 107 ['OS!="android"', { | |
| 108 'dependencies': [ | |
| 109 'runtime/dart-runtime.gyp:sample_extension', | |
| 110 ], | |
| 111 }, | |
| 112 ], | |
| 113 ] | |
| 114 }, | |
| 115 ], | |
| 116 } | |
| OLD | NEW |