Chromium Code Reviews| 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' |
| + ], |
| + }, |
| + ], |
| } |
| ], |
| } |