| 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 dartc bots. | 106 # This is the target that is built on the dartc bots. |
| 99 # It must depend on anything that is required by dartc | 107 # It must depend on anything that is required by dartc |
| 100 # tests. | 108 # tests. |
| 101 'target_name': 'dartc_bot', | 109 'target_name': 'dartc_bot', |
| 102 'type': 'none', | 110 'type': 'none', |
| 103 'dependencies': [ | 111 'dependencies': [ |
| 104 'create_sdk', | 112 'create_sdk', |
| 105 'packages', | 113 'packages', |
| 106 ], | 114 ], |
| 107 }, | 115 }, |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 }, | 149 }, |
| 142 { | 150 { |
| 143 'target_name': 'packages', | 151 'target_name': 'packages', |
| 144 'type': 'none', | 152 'type': 'none', |
| 145 'dependencies': [ | 153 'dependencies': [ |
| 146 'pkg/pkg.gyp:pkg_packages', | 154 'pkg/pkg.gyp:pkg_packages', |
| 147 ], | 155 ], |
| 148 }, | 156 }, |
| 149 ], | 157 ], |
| 150 } | 158 } |
| OLD | NEW |