Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2416)

Side by Side Diff: utils/apidoc/apidoc.gyp

Issue 12388048: Cleanup two warning messages when running apidoc, and update the apidoc.gyp file to rerun the tool (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/apidoc/apidoc.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « utils/apidoc/apidoc.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698