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 # TODO(alanknight) : Once we're fully switched over to the new | |
159 # viewer remove the old api_docs gyp file. | |
158 'utils/apidoc/apidoc.gyp:api_docs', | 160 'utils/apidoc/apidoc.gyp:api_docs', |
161 'utils/apidoc/docgen.gyp:docgen', | |
kustermann
2013/11/18 09:57:08
I think this could cause issues. These two depende
Alan Knight
2013/11/18 20:34:50
Made docgen depend on the apidocs target. It seems
ahe
2013/11/18 20:56:44
Unfortunately, this is one of the biggest gotchas
| |
159 ], | 162 ], |
160 }, | 163 }, |
161 { | 164 { |
162 'target_name': 'editor', | 165 'target_name': 'editor', |
163 'type': 'none', | 166 'type': 'none', |
164 'dependencies': [ | 167 'dependencies': [ |
165 'editor/build/generated/editor_deps.gyp:editor_deps', | 168 'editor/build/generated/editor_deps.gyp:editor_deps', |
166 | 169 |
167 # This dependency on create_sdk does not mean that the Editor | 170 # 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 | 171 # 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 }, | 214 }, |
212 { | 215 { |
213 'target_name': 'packages', | 216 'target_name': 'packages', |
214 'type': 'none', | 217 'type': 'none', |
215 'dependencies': [ | 218 'dependencies': [ |
216 'pkg/pkg.gyp:pkg_packages', | 219 'pkg/pkg.gyp:pkg_packages', |
217 ], | 220 ], |
218 }, | 221 }, |
219 ], | 222 ], |
220 } | 223 } |
OLD | NEW |