Chromium Code Reviews| Index: dart/utils/apidoc/apidoc.gyp |
| diff --git a/dart/utils/apidoc/apidoc.gyp b/dart/utils/apidoc/apidoc.gyp |
| index 5ce55f83ab543ca565bd7755f5adf4a5cefb89c9..b438042cb0f55d661bf3575c262365157f3d094f 100644 |
| --- a/dart/utils/apidoc/apidoc.gyp |
| +++ b/dart/utils/apidoc/apidoc.gyp |
| @@ -15,17 +15,20 @@ |
| { |
| 'action_name': 'run_apidoc', |
| 'inputs': [ |
| - '<(PRODUCT_DIR)/dart', |
| + '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| + '<(PRODUCT_DIR)/frog/bin/frog', |
| '<!@(["python", "scripts/list_files.py"])', |
| ], |
| 'outputs': [ |
| - '<(PRODUCT_DIR)/api_docs', |
| + '<(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
|
| + '<(PRODUCT_DIR)/api_docs/client-live-nav.js', |
| ], |
| 'action': [ |
| - '<(PRODUCT_DIR)/dart', |
| + '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 'apidoc.dart', |
| '--out=<(PRODUCT_DIR)/api_docs', |
| - '--mode=live-nav' |
| + '--mode=live-nav', |
| + '--compiler=<(PRODUCT_DIR)/frog/bin/frog', |
| ], |
| }, |
| ], |