| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'tools/upload_sdk.py', | 103 'tools/upload_sdk.py', |
| 104 '<(PRODUCT_DIR)/dart-sdk' | 104 '<(PRODUCT_DIR)/dart-sdk' |
| 105 ], | 105 ], |
| 106 }, | 106 }, |
| 107 ], | 107 ], |
| 108 }, | 108 }, |
| 109 { | 109 { |
| 110 'target_name': 'dart2js', | 110 'target_name': 'dart2js', |
| 111 'type': 'none', | 111 'type': 'none', |
| 112 'dependencies': [ | 112 'dependencies': [ |
| 113 'third_party/v8/src/d8.gyp:d8', | |
| 114 'utils/compiler/compiler.gyp:dart2js', | 113 'utils/compiler/compiler.gyp:dart2js', |
| 115 ], | 114 ], |
| 116 }, | 115 }, |
| 117 { | 116 { |
| 118 'target_name': 'analyzer', | 117 'target_name': 'analyzer', |
| 119 'type': 'none', | 118 'type': 'none', |
| 120 'dependencies': [ | 119 'dependencies': [ |
| 121 'editor/analyzer.gyp:analyzer', | 120 'editor/analyzer.gyp:analyzer', |
| 122 ], | 121 ], |
| 123 }, | 122 }, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 143 'packages', | 142 'packages', |
| 144 ], | 143 ], |
| 145 }, | 144 }, |
| 146 { | 145 { |
| 147 # This is the target that is built on the dart2js build bots. | 146 # This is the target that is built on the dart2js build bots. |
| 148 # It must depend on anything that is required by the dart2js | 147 # It must depend on anything that is required by the dart2js |
| 149 # test suites. | 148 # test suites. |
| 150 'target_name': 'dart2js_bot', | 149 'target_name': 'dart2js_bot', |
| 151 'type': 'none', | 150 'type': 'none', |
| 152 'dependencies': [ | 151 'dependencies': [ |
| 153 'third_party/v8/src/d8.gyp:d8', | |
| 154 'create_sdk', | 152 'create_sdk', |
| 155 'packages', | 153 'packages', |
| 156 ], | 154 ], |
| 157 }, | 155 }, |
| 158 { | 156 { |
| 159 'target_name': 'api_docs', | 157 'target_name': 'api_docs', |
| 160 'type': 'none', | 158 'type': 'none', |
| 161 'dependencies': [ | 159 'dependencies': [ |
| 162 'utils/apidoc/apidoc.gyp:api_docs', | 160 'utils/apidoc/apidoc.gyp:api_docs', |
| 163 ], | 161 ], |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 }, | 215 }, |
| 218 { | 216 { |
| 219 'target_name': 'packages', | 217 'target_name': 'packages', |
| 220 'type': 'none', | 218 'type': 'none', |
| 221 'dependencies': [ | 219 'dependencies': [ |
| 222 'pkg/pkg.gyp:pkg_packages', | 220 'pkg/pkg.gyp:pkg_packages', |
| 223 ], | 221 ], |
| 224 }, | 222 }, |
| 225 ], | 223 ], |
| 226 } | 224 } |
| OLD | NEW |