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

Side by Side Diff: dart.gyp

Issue 9705088: Generate API docs during build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix arg parsing. Created 8 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
« no previous file with comments | « no previous file | frog/reader.dart » ('j') | utils/apidoc/apidoc.gyp » ('J')
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 # These variables are used in the creation of the .vcproj file on 7 # These variables are used in the creation of the .vcproj file on
8 # Windows. 8 # Windows.
9 'cygwin_dir': 'third_party/cygwin', 9 'cygwin_dir': 'third_party/cygwin',
10 }, 10 },
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'dependencies': [ 98 'dependencies': [
99 'utils/compiler/compiler.gyp:dart2js', 99 'utils/compiler/compiler.gyp:dart2js',
100 100
101 # TODO(ahe): Remove dependencies on frog and frogsh, they are 101 # TODO(ahe): Remove dependencies on frog and frogsh, they are
102 # just here to simplify 102 # just here to simplify
103 # frog/scripts/buildbot_annotated_steps.py temporarily. 103 # frog/scripts/buildbot_annotated_steps.py temporarily.
104 'frog/dart-frog.gyp:frog', 104 'frog/dart-frog.gyp:frog',
105 'frog/dart-frog.gyp:frogsh', 105 'frog/dart-frog.gyp:frogsh',
106 ], 106 ],
107 }, 107 },
108 {
109 'target_name': 'api_docs',
110 'type': 'none',
111 'dependencies': [
112 'utils/apidoc/apidoc.gyp:api_docs',
113 ],
114 }
108 ], 115 ],
109 } 116 }
OLDNEW
« no previous file with comments | « no previous file | frog/reader.dart » ('j') | utils/apidoc/apidoc.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698