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 20 matching lines...) Expand all Loading... | |
| 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"])', |
| 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': [ | |
|
ahe
2013/04/05 19:01:00
This overwrites the previous value of 'inputs'. N
devoncarew
2013/04/05 19:09:21
Sorry, my bad. I had noticed that it wasn't being
ahe
2013/04/05 19:13:38
No worries. GYP is so complicated, that's why I re
| |
| 42 '<!@(["python", "../../tools/list_files.py", "\\.(css|png|dart)$", " ."])', | |
| 43 ], | |
| 41 'outputs': [ | 44 'outputs': [ |
| 42 '<(PRODUCT_DIR)/api_docs/index.html', | 45 '<(PRODUCT_DIR)/api_docs/index.html', |
| 43 '<(PRODUCT_DIR)/api_docs/client-static.js', | 46 '<(PRODUCT_DIR)/api_docs/client-static.js', |
| 44 ], | 47 ], |
| 45 'action': [ | 48 'action': [ |
| 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 47 'apidoc.dart', | 50 'apidoc.dart', |
| 48 '--out=<(PRODUCT_DIR)/api_docs', | 51 '--out=<(PRODUCT_DIR)/api_docs', |
| 49 '--version=<!@(["python", "../../tools/print_version.py"])', | 52 '--version=<!@(["python", "../../tools/print_version.py"])', |
| 50 '--pkg=<(PRODUCT_DIR)/packages/', | 53 '--pkg=<(PRODUCT_DIR)/packages/', |
| 51 '--mode=static', | 54 '--mode=static', |
| 52 '--exclude-lib=dartdoc', | 55 '--exclude-lib=dartdoc', |
| 53 '--exclude-lib=http', | 56 '--exclude-lib=http', |
| 54 '--exclude-lib=oauth2', | 57 '--exclude-lib=oauth2', |
| 55 '--exclude-lib=pathos', | 58 '--exclude-lib=pathos', |
| 56 '--exclude-lib=webdriver', | 59 '--exclude-lib=webdriver', |
| 57 '--exclude-lib=yaml', | 60 '--exclude-lib=yaml', |
| 58 '--include-lib=matcher', | 61 '--include-lib=matcher', |
| 59 '--include-lib=mock', | 62 '--include-lib=mock', |
| 60 '--include-lib=scheduled_test', | 63 '--include-lib=scheduled_test', |
| 61 ], | 64 ], |
| 62 'message': 'Running apidoc: <(_action)', | 65 'message': 'Running apidoc: <(_action)', |
| 63 }, | 66 }, |
| 64 ], | 67 ], |
| 65 } | 68 } |
| 66 ], | 69 ], |
| 67 } | 70 } |
| OLD | NEW |