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

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

Issue 385163006: Stop generating package docs from docgen Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 | « no previous file | 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'outputs': [ 71 'outputs': [
72 '<(PRODUCT_DIR)/api_docs/docgen/index.json', 72 '<(PRODUCT_DIR)/api_docs/docgen/index.json',
73 ], 73 ],
74 'action': [ 74 'action': [
75 'python', 75 'python',
76 '../../tools/only_in_release_mode.py', 76 '../../tools/only_in_release_mode.py',
77 '<@(_outputs)', 77 '<@(_outputs)',
78 '--', 78 '--',
79 '<(PRODUCT_DIR)/dart-sdk/bin/docgen<(script_suffix)', 79 '<(PRODUCT_DIR)/dart-sdk/bin/docgen<(script_suffix)',
80 '--out=<(PRODUCT_DIR)/api_docs/docgen', 80 '--out=<(PRODUCT_DIR)/api_docs/docgen',
81 '--include-sdk', 81 '--parse-sdk',
82 '--no-include-dependent-packages', 82 '--exclude-lib=metadata',
83 '--package-root=<(PRODUCT_DIR)/packages', 83 '.'
84 '--exclude-lib=async_helper',
85 '--exclude-lib=compiler',
86 '--exclude-lib=dart2js_incremental',
87 '--exclude-lib=docgen',
88 '--exclude-lib=expect',
89 '--exclude-lib=try',
90 '../../pkg'
91 ], 84 ],
92 'message': 'Running docgen: <(_action)', 85 'message': 'Running docgen: <(_action)',
93 }, 86 },
94 ], 87 ],
95 } 88 }
96 ], 89 ],
97 } 90 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698