| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables' : { | 6 'variables' : { |
| 7 'script_suffix%': '', | 7 'script_suffix%': '', |
| 8 }, | 8 }, |
| 9 'conditions' : [ | 9 'conditions' : [ |
| 10 ['OS=="win"', { | 10 ['OS=="win"', { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 ], | 40 ], |
| 41 'inputs': [ | 41 'inputs': [ |
| 42 '<!@(["python", "../../tools/list_files.py", "\\.(css|png|dart)$", "
."])', | 42 '<!@(["python", "../../tools/list_files.py", "\\.(css|png|dart)$", "
."])', |
| 43 ], | 43 ], |
| 44 'outputs': [ | 44 'outputs': [ |
| 45 '<(PRODUCT_DIR)/api_docs/index.html', | 45 '<(PRODUCT_DIR)/api_docs/index.html', |
| 46 '<(PRODUCT_DIR)/api_docs/client-static.js', | 46 '<(PRODUCT_DIR)/api_docs/client-static.js', |
| 47 ], | 47 ], |
| 48 'action': [ | 48 'action': [ |
| 49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 50 '--package-root=<(PRODUCT_DIR)/packages/', |
| 50 'apidoc.dart', | 51 'apidoc.dart', |
| 51 '--out=<(PRODUCT_DIR)/api_docs', | 52 '--out=<(PRODUCT_DIR)/api_docs', |
| 52 '--version=<!@(["python", "../../tools/print_version.py"])', | 53 '--version=<!@(["python", "../../tools/print_version.py"])', |
| 53 '--pkg=<(PRODUCT_DIR)/packages', | 54 '--pkg=<(PRODUCT_DIR)/packages', |
| 54 '--mode=static', | 55 '--mode=static', |
| 55 '--exclude-lib=analyzer_experimental', | 56 '--exclude-lib=analyzer_experimental', |
| 56 '--exclude-lib=browser', | 57 '--exclude-lib=browser', |
| 57 '--exclude-lib=dartdoc', | 58 '--exclude-lib=dartdoc', |
| 58 '--exclude-lib=http', | 59 '--exclude-lib=http', |
| 59 '--exclude-lib=oauth2', | 60 '--exclude-lib=oauth2', |
| 60 '--exclude-lib=pathos', | 61 '--exclude-lib=pathos', |
| 61 '--exclude-lib=webdriver', | 62 '--exclude-lib=webdriver', |
| 62 '--exclude-lib=yaml', | 63 '--exclude-lib=yaml', |
| 63 '--include-lib=matcher', | 64 '--include-lib=matcher', |
| 64 '--include-lib=mock', | 65 '--include-lib=mock', |
| 65 '--include-lib=scheduled_test', | 66 '--include-lib=scheduled_test', |
| 66 ], | 67 ], |
| 67 'message': 'Running apidoc: <(_action)', | 68 'message': 'Running apidoc: <(_action)', |
| 68 }, | 69 }, |
| 69 ], | 70 ], |
| 70 } | 71 } |
| 71 ], | 72 ], |
| 72 } | 73 } |
| OLD | NEW |