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

Side by Side Diff: dart.gyp

Issue 1356943002: remove docgen from the sdk, and generating docs with docgen (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: add utils_wrapper snapshot Created 5 years, 3 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
« no previous file with comments | « README.dart-sdk ('k') | tools/bots/dart_sdk.py » ('j') | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'most', 8 'target_name': 'most',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 # We have this additional target because the try target takes to long 87 # We have this additional target because the try target takes to long
88 # to build in debug mode and will make the build step time out. 88 # to build in debug mode and will make the build step time out.
89 'target_name': 'dart2js_bot_debug', 89 'target_name': 'dart2js_bot_debug',
90 'type': 'none', 90 'type': 'none',
91 'dependencies': [ 91 'dependencies': [
92 'create_sdk', 92 'create_sdk',
93 'packages', 93 'packages',
94 ], 94 ],
95 }, 95 },
96 { 96 {
97 'target_name': 'api_docs',
98 'type': 'none',
99 'dependencies': [
100 'utils/apidoc/docgen.gyp:dartdocgen',
101 ],
102 },
103 {
104 'target_name': 'samples', 97 'target_name': 'samples',
105 'type': 'none', 98 'type': 'none',
106 'dependencies': [], 99 'dependencies': [],
107 'conditions': [ 100 'conditions': [
108 ['OS!="android"', { 101 ['OS!="android"', {
109 'dependencies': [ 102 'dependencies': [
110 'runtime/dart-runtime.gyp:sample_extension', 103 'runtime/dart-runtime.gyp:sample_extension',
111 ], 104 ],
112 }, 105 },
113 ], 106 ],
114 ] 107 ]
115 }, 108 },
116 { 109 {
117 'target_name': 'packages', 110 'target_name': 'packages',
118 'type': 'none', 111 'type': 'none',
119 'dependencies': [ 112 'dependencies': [
120 'pkg/pkg.gyp:pkg_packages', 113 'pkg/pkg.gyp:pkg_packages',
121 ], 114 ],
122 }, 115 },
123 { 116 {
124 'target_name': 'try', 117 'target_name': 'try',
125 'type': 'none', 118 'type': 'none',
126 'dependencies': [ 119 'dependencies': [
127 'site/try/build_try.gyp:try_site', 120 'site/try/build_try.gyp:try_site',
128 ], 121 ],
129 }, 122 },
130 ], 123 ],
131 } 124 }
OLDNEW
« no previous file with comments | « README.dart-sdk ('k') | tools/bots/dart_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698