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

Side by Side Diff: utils/apidoc/apidoc.gyp

Issue 9705088: Generate API docs during build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix arg parsing. Created 8 years, 8 months 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
OLDNEW
(Empty)
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
3 # BSD-style license that can be found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'api_docs',
9 'type': 'none',
10 'dependencies': [
11 '../../frog/dart-frog.gyp:frog',
12 '../../runtime/dart-runtime.gyp:dart',
13 ],
14 'actions': [
15 {
16 'action_name': 'run_apidoc',
17 'inputs': [
18 '<(PRODUCT_DIR)/dart',
ahe 2012/04/19 09:25:26 As I'm learning more about Windows, I think this s
19 '<!@(["python", "scripts/list_files.py"])',
20 ],
21 'outputs': [
22 '<(PRODUCT_DIR)/api_docs',
ahe 2012/04/19 09:25:26 I think this output is a directory. That is still
23 ],
24 'action': [
25 '<(PRODUCT_DIR)/dart',
ahe 2012/04/19 09:25:26 See comment above.
26 'apidoc.dart',
27 '--out=<(PRODUCT_DIR)/api_docs',
28 '--mode=live-nav'
29 ],
30 },
31 ],
32 }
33 ],
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698