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

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

Issue 10174006: Use 'frog' in apidoc. Also fix broken dependencies. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
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': 'api_docs', 8 'target_name': 'api_docs',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 '../../frog/dart-frog.gyp:frog', 11 '../../frog/dart-frog.gyp:frog',
12 '../../runtime/dart-runtime.gyp:dart', 12 '../../runtime/dart-runtime.gyp:dart',
13 ], 13 ],
14 'actions': [ 14 'actions': [
15 { 15 {
16 'action_name': 'run_apidoc', 16 'action_name': 'run_apidoc',
17 'inputs': [ 17 'inputs': [
18 '<(PRODUCT_DIR)/dart', 18 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
19 '<(PRODUCT_DIR)/frog/bin/frog',
19 '<!@(["python", "scripts/list_files.py"])', 20 '<!@(["python", "scripts/list_files.py"])',
20 ], 21 ],
21 'outputs': [ 22 'outputs': [
22 '<(PRODUCT_DIR)/api_docs', 23 '<(PRODUCT_DIR)/api_docs/index.html',
Bob Nystrom 2012/04/23 16:03:20 Does it matter that all of the other generated HTM
ahe 2012/04/24 10:31:02 That depends. I would like to identify the last fi
Bob Nystrom 2012/04/24 16:38:08 We could do that, but that's likely to be brittle
ahe 2012/04/25 08:40:38 This is not to make GYP happy. Any tool that parti
ahe 2012/04/25 08:42:45 The last thing that happens is that the exit code
24 '<(PRODUCT_DIR)/api_docs/client-live-nav.js',
23 ], 25 ],
24 'action': [ 26 'action': [
25 '<(PRODUCT_DIR)/dart', 27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
26 'apidoc.dart', 28 'apidoc.dart',
27 '--out=<(PRODUCT_DIR)/api_docs', 29 '--out=<(PRODUCT_DIR)/api_docs',
28 '--mode=live-nav' 30 '--mode=live-nav',
31 '--compiler=<(PRODUCT_DIR)/frog/bin/frog',
29 ], 32 ],
30 }, 33 },
31 ], 34 ],
32 } 35 }
33 ], 36 ],
34 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698