Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |