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

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

Issue 243483005: pkg/docgen: fixed type references within typedef doc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 6 years, 8 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
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'python', 73 'python',
74 '../../tools/only_in_release_mode.py', 74 '../../tools/only_in_release_mode.py',
75 '<@(_outputs)', 75 '<@(_outputs)',
76 '--', 76 '--',
77 '../../sdk/bin/dart', 77 '../../sdk/bin/dart',
78 '--package-root=<(PRODUCT_DIR)/packages', 78 '--package-root=<(PRODUCT_DIR)/packages',
79 '../../pkg/docgen/bin/docgen.dart', 79 '../../pkg/docgen/bin/docgen.dart',
80 '--out=<(PRODUCT_DIR)/api_docs/docgen', 80 '--out=<(PRODUCT_DIR)/api_docs/docgen',
81 '--include-sdk', 81 '--include-sdk',
82 '--no-include-dependent-packages', 82 '--no-include-dependent-packages',
83 '--indent-json',
Emily Fortuna 2014/04/21 18:31:04 :-)
kevmoo 2014/04/21 18:36:07 I just removed this. Don't think it's a good idea.
83 '--package-root=<(PRODUCT_DIR)/packages', 84 '--package-root=<(PRODUCT_DIR)/packages',
84 '--exclude-lib=async_helper', 85 '--exclude-lib=async_helper',
85 '--exclude-lib=expect', 86 '--exclude-lib=expect',
86 '--exclude-lib=docgen', 87 '--exclude-lib=docgen',
87 '../../pkg' 88 '../../pkg'
88 ], 89 ],
89 'message': 'Running docgen: <(_action)', 90 'message': 'Running docgen: <(_action)',
90 }, 91 },
91 ], 92 ],
92 } 93 }
93 ], 94 ],
94 } 95 }
OLDNEW
« pkg/docgen/lib/src/models/variable.dart ('K') | « pkg/docgen/test/typedef_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698