| 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 'target_name': 'analyzer', |
| 99 'type': 'none', |
| 100 'dependencies': [ |
| 101 'create_sdk', |
| 102 'editor/analyzer.gyp:analyzer', |
| 103 ], |
| 104 }, |
| 105 { |
| 98 # This is the target that is built on the dart2js build bots. | 106 # This is the target that is built on the dart2js build bots. |
| 99 # It must depend on anything that is required by the dart2js | 107 # It must depend on anything that is required by the dart2js |
| 100 # test suites. | 108 # test suites. |
| 101 'target_name': 'dart2js_bot', | 109 'target_name': 'dart2js_bot', |
| 102 'type': 'none', | 110 'type': 'none', |
| 103 'dependencies': [ | 111 'dependencies': [ |
| 104 'third_party/v8/src/d8.gyp:d8', | 112 'third_party/v8/src/d8.gyp:d8', |
| 105 'create_sdk', | 113 'create_sdk', |
| 106 'packages', | 114 'packages', |
| 107 ], | 115 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 130 }, | 138 }, |
| 131 { | 139 { |
| 132 'target_name': 'packages', | 140 'target_name': 'packages', |
| 133 'type': 'none', | 141 'type': 'none', |
| 134 'dependencies': [ | 142 'dependencies': [ |
| 135 'pkg/pkg.gyp:pkg_packages', | 143 'pkg/pkg.gyp:pkg_packages', |
| 136 ], | 144 ], |
| 137 }, | 145 }, |
| 138 ], | 146 ], |
| 139 } | 147 } |
| OLD | NEW |