| 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', |
| 19 '<!@(["python", "scripts/list_files.py"])', |
| 20 ], |
| 21 'outputs': [ |
| 22 '<(PRODUCT_DIR)/api_docs', |
| 23 ], |
| 24 'action': [ |
| 25 '<(PRODUCT_DIR)/dart', |
| 26 'apidoc.dart', |
| 27 '--out=<(PRODUCT_DIR)/api_docs' |
| 28 ], |
| 29 }, |
| 30 ], |
| 31 } |
| 32 ], |
| 33 } |
| OLD | NEW |