Chromium Code Reviews| 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 14 matching lines...) Expand all Loading... | |
| 25 'includes': [ | 25 'includes': [ |
| 26 '../../sdk/lib/core/corelib_sources.gypi', | 26 '../../sdk/lib/core/corelib_sources.gypi', |
| 27 ], | 27 ], |
| 28 'actions': [ | 28 'actions': [ |
| 29 { | 29 { |
| 30 'action_name': 'run_apidoc', | 30 'action_name': 'run_apidoc', |
| 31 'inputs': [ | 31 'inputs': [ |
| 32 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 32 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 33 '<(PRODUCT_DIR)/dart2js.snapshot', | 33 '<(PRODUCT_DIR)/dart2js.snapshot', |
| 34 '<!@(["python", "../../tools/list_files.py", "\\.(css|ico|js|json|pn g|sh|txt|yaml|py)$", ".", "../../sdk/lib/_internal/dartdoc"])', | 34 '<!@(["python", "../../tools/list_files.py", "\\.(css|ico|js|json|pn g|sh|txt|yaml|py)$", ".", "../../sdk/lib/_internal/dartdoc"])', |
| 35 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib", "../../runtime/lib", "../../runtime/bin"])', | 35 '<!@(["python", "../../tools/list_files.py", "\\.dart$", ".", "../.. /sdk/lib", "../../runtime/lib", "../../runtime/bin"])', |
|
Andrei Mouravski
2013/04/05 19:13:50
Please add documentation to this block or directly
ahe
2013/04/05 19:26:45
Will do. Let me know if this answers your questio
Andrei Mouravski
2013/04/05 22:40:18
I think for the time being, you could just copy th
| |
| 36 '../../sdk/bin/dart', | 36 '../../sdk/bin/dart', |
| 37 '../../sdk/bin/dart.bat', | 37 '../../sdk/bin/dart.bat', |
| 38 '../../sdk/bin/dart2js', | 38 '../../sdk/bin/dart2js', |
| 39 '../../sdk/bin/dart2js.bat', | 39 '../../sdk/bin/dart2js.bat', |
| 40 ], | 40 ], |
| 41 'inputs': [ | |
| 42 '<!@(["python", "../../tools/list_files.py", "\\.(css|png|dart)$", " ."])', | |
| 43 ], | |
| 44 'outputs': [ | 41 'outputs': [ |
| 45 '<(PRODUCT_DIR)/api_docs/index.html', | 42 '<(PRODUCT_DIR)/api_docs/index.html', |
| 46 '<(PRODUCT_DIR)/api_docs/client-static.js', | 43 '<(PRODUCT_DIR)/api_docs/client-static.js', |
| 47 ], | 44 ], |
| 48 'action': [ | 45 'action': [ |
| 49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 50 '--package-root=<(PRODUCT_DIR)/packages/', | 47 '--package-root=<(PRODUCT_DIR)/packages/', |
| 51 'apidoc.dart', | 48 'apidoc.dart', |
| 52 '--out=<(PRODUCT_DIR)/api_docs', | 49 '--out=<(PRODUCT_DIR)/api_docs', |
| 53 '--version=<!@(["python", "../../tools/print_version.py"])', | 50 '--version=<!@(["python", "../../tools/print_version.py"])', |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 65 '--exclude-lib=yaml', | 62 '--exclude-lib=yaml', |
| 66 '--include-lib=matcher', | 63 '--include-lib=matcher', |
| 67 '--include-lib=mock', | 64 '--include-lib=mock', |
| 68 ], | 65 ], |
| 69 'message': 'Running apidoc: <(_action)', | 66 'message': 'Running apidoc: <(_action)', |
| 70 }, | 67 }, |
| 71 ], | 68 ], |
| 72 } | 69 } |
| 73 ], | 70 ], |
| 74 } | 71 } |
| OLD | NEW |