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

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

Issue 13421002: Changed pkg option to package-root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« utils/apidoc/apidoc.dart ('K') | « 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'outputs': [ 44 'outputs': [
45 '<(PRODUCT_DIR)/api_docs/index.html', 45 '<(PRODUCT_DIR)/api_docs/index.html',
46 '<(PRODUCT_DIR)/api_docs/client-static.js', 46 '<(PRODUCT_DIR)/api_docs/client-static.js',
47 ], 47 ],
48 'action': [ 48 'action': [
49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 49 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
50 '--package-root=<(PRODUCT_DIR)/packages/', 50 '--package-root=<(PRODUCT_DIR)/packages/',
51 'apidoc.dart', 51 'apidoc.dart',
52 '--out=<(PRODUCT_DIR)/api_docs', 52 '--out=<(PRODUCT_DIR)/api_docs',
53 '--version=<!@(["python", "../../tools/print_version.py"])', 53 '--version=<!@(["python", "../../tools/print_version.py"])',
54 '--pkg=<(PRODUCT_DIR)/packages', 54 '--package-root=<(PRODUCT_DIR)/packages',
55 '--mode=static', 55 '--mode=static',
56 '--exclude-lib=analyzer_experimental', 56 '--exclude-lib=analyzer_experimental',
57 '--exclude-lib=browser', 57 '--exclude-lib=browser',
58 '--exclude-lib=dartdoc', 58 '--exclude-lib=dartdoc',
59 '--exclude-lib=http', 59 '--exclude-lib=http',
60 '--exclude-lib=oauth2', 60 '--exclude-lib=oauth2',
61 '--exclude-lib=pathos', 61 '--exclude-lib=pathos',
62 '--exclude-lib=scheduled_test', 62 '--exclude-lib=scheduled_test',
63 '--exclude-lib=stack_trace', 63 '--exclude-lib=stack_trace',
64 '--exclude-lib=webdriver', 64 '--exclude-lib=webdriver',
65 '--exclude-lib=yaml', 65 '--exclude-lib=yaml',
66 '--include-lib=matcher', 66 '--include-lib=matcher',
67 '--include-lib=mock', 67 '--include-lib=mock',
68 ], 68 ],
69 'message': 'Running apidoc: <(_action)', 69 'message': 'Running apidoc: <(_action)',
70 }, 70 },
71 ], 71 ],
72 } 72 }
73 ], 73 ],
74 } 74 }
OLDNEW
« utils/apidoc/apidoc.dart ('K') | « utils/apidoc/apidoc.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698