| 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': 'compiler', | 8 'target_name': 'compiler', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 }, | 88 }, |
| 89 { | 89 { |
| 90 'target_name': 'dart2js', | 90 'target_name': 'dart2js', |
| 91 'type': 'none', | 91 'type': 'none', |
| 92 'dependencies': [ | 92 'dependencies': [ |
| 93 'third_party/v8/src/d8.gyp:d8', | 93 'third_party/v8/src/d8.gyp:d8', |
| 94 'utils/compiler/compiler.gyp:dart2js', | 94 'utils/compiler/compiler.gyp:dart2js', |
| 95 ], | 95 ], |
| 96 }, | 96 }, |
| 97 { | 97 { |
| 98 # This is the target that is built on the dartc bots. |
| 99 # It must depend on anything that is required by dartc |
| 100 # tests. |
| 101 'target_name': 'dartc_bot', |
| 102 'type': 'none', |
| 103 'dependencies': [ |
| 104 'create_sdk', |
| 105 'packages', |
| 106 ], |
| 107 }, |
| 108 { |
| 98 # This is the target that is built on the dart2js build bots. | 109 # This is the target that is built on the dart2js build bots. |
| 99 # It must depend on anything that is required by the dart2js | 110 # It must depend on anything that is required by the dart2js |
| 100 # test suites. | 111 # test suites. |
| 101 'target_name': 'dart2js_bot', | 112 'target_name': 'dart2js_bot', |
| 102 'type': 'none', | 113 'type': 'none', |
| 103 'dependencies': [ | 114 'dependencies': [ |
| 104 'third_party/v8/src/d8.gyp:d8', | 115 'third_party/v8/src/d8.gyp:d8', |
| 105 'create_sdk', | 116 'create_sdk', |
| 106 'packages', | 117 'packages', |
| 107 ], | 118 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 130 }, | 141 }, |
| 131 { | 142 { |
| 132 'target_name': 'packages', | 143 'target_name': 'packages', |
| 133 'type': 'none', | 144 'type': 'none', |
| 134 'dependencies': [ | 145 'dependencies': [ |
| 135 'pkg/pkg.gyp:pkg_packages', | 146 'pkg/pkg.gyp:pkg_packages', |
| 136 ], | 147 ], |
| 137 }, | 148 }, |
| 138 ], | 149 ], |
| 139 } | 150 } |
| OLD | NEW |