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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
148 'type': 'none', | 148 'type': 'none', |
149 'dependencies': [ | 149 'dependencies': [ |
150 'create_sdk', | 150 'create_sdk', |
151 'packages', | 151 'packages', |
152 ], | 152 ], |
153 }, | 153 }, |
154 { | 154 { |
155 'target_name': 'api_docs', | 155 'target_name': 'api_docs', |
156 'type': 'none', | 156 'type': 'none', |
157 'dependencies': [ | 157 'dependencies': [ |
158 'utils/apidoc/apidoc.gyp:api_docs', | 158 'utils/apidoc/apidoc.gyp:api_docs', |
Bob Nystrom
2013/11/14 22:43:04
Do you have a plan for when you'll remove this?
M
Alan Knight
2013/11/15 18:49:56
Done.
| |
159 'utils/apidoc/docgen.gyp:docgen', | |
159 ], | 160 ], |
160 }, | 161 }, |
161 { | 162 { |
162 'target_name': 'editor', | 163 'target_name': 'editor', |
163 'type': 'none', | 164 'type': 'none', |
164 'dependencies': [ | 165 'dependencies': [ |
165 'editor/build/generated/editor_deps.gyp:editor_deps', | 166 'editor/build/generated/editor_deps.gyp:editor_deps', |
166 | 167 |
167 # This dependency on create_sdk does not mean that the Editor | 168 # This dependency on create_sdk does not mean that the Editor |
168 # is rebuilt if the SDK is. It only means that when you build | 169 # is rebuilt if the SDK is. It only means that when you build |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
211 }, | 212 }, |
212 { | 213 { |
213 'target_name': 'packages', | 214 'target_name': 'packages', |
214 'type': 'none', | 215 'type': 'none', |
215 'dependencies': [ | 216 'dependencies': [ |
216 'pkg/pkg.gyp:pkg_packages', | 217 'pkg/pkg.gyp:pkg_packages', |
217 ], | 218 ], |
218 }, | 219 }, |
219 ], | 220 ], |
220 } | 221 } |
OLD | NEW |