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

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

Issue 12613008: Remove pkg from apidoc. (Closed) Base URL: https://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
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 ], 43 ],
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 'apidoc.dart', 50 'apidoc.dart',
51 '--out=<(PRODUCT_DIR)/api_docs', 51 '--out=<(PRODUCT_DIR)/api_docs',
52 '--version=<!@(["python", "../../tools/print_version.py"])', 52 '--version=<!@(["python", "../../tools/print_version.py"])',
53 '--pkg=<(PRODUCT_DIR)/packages/',
54 '--mode=static', 53 '--mode=static',
55 '--exclude-lib=dartdoc', 54 '--exclude-lib=dartdoc',
56 '--exclude-lib=http', 55 '--exclude-lib=metadata',
57 '--exclude-lib=oauth2',
58 '--exclude-lib=pathos',
59 '--exclude-lib=webdriver',
60 '--exclude-lib=yaml',
61 '--include-lib=matcher',
62 '--include-lib=mock',
63 '--include-lib=scheduled_test',
64 ], 56 ],
65 'message': 'Running apidoc: <(_action)', 57 'message': 'Running apidoc: <(_action)',
66 }, 58 },
67 ], 59 ],
68 } 60 }
69 ], 61 ],
70 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698