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

Unified Diff: dart.gyp

Issue 9705088: Generate API docs during build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/dartdoc/dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart.gyp
diff --git a/dart.gyp b/dart.gyp
index 844514bc5583edca4afe561cb6ab65fb3e27789a..832b231024f6990e0855d1e97c0aef28bd555a43 100644
--- a/dart.gyp
+++ b/dart.gyp
@@ -4,7 +4,7 @@
{
'variables': {
- # These variables are used in the creation of the .vcproj file on
+ # These variables are used in the creation of the .vcproj file on
# Windows.
'cygwin_dir': 'third_party/cygwin',
},
@@ -105,6 +105,29 @@
],
},
],
+ },
+ {
+ 'target_name': 'api_docs',
ahe 2012/03/16 08:07:40 I think this target belongs in its own GYP file, f
Bob Nystrom 2012/03/28 20:19:36 Done.
+ 'type': 'none',
+ 'dependencies': [
+ 'frog', 'runtime',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'run_apidoc',
+ 'inputs': [
+ 'utils/apidoc',
ahe 2012/03/16 08:07:40 No directory dependencies, please. Consider: * If
Bob Nystrom 2012/03/28 20:19:36 Done, but I'm having some problems. I wrote a "lis
+ 'lib/dartdoc',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/api_docs',
+ ],
+ 'action': [
+ 'utils/apidoc/apidoc',
ahe 2012/03/16 08:07:40 This needs to be installed in PRODUCT_DIR as a rea
Bob Nystrom 2012/03/28 20:19:36 Done. Just invoking a dart script now.
+ '--out=<(PRODUCT_DIR)/api_docs'
+ ],
+ },
+ ],
}
],
}
« no previous file with comments | « no previous file | lib/dartdoc/dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698