Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: dart.gyp

Issue 73113002: Generate docgen output along with api_docs as part of the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/docgen/bin/docgen.dart » ('j') | pkg/docgen/bin/docgen.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | pkg/docgen/bin/docgen.dart » ('j') | pkg/docgen/bin/docgen.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698