OLD | NEW |
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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Before adding or updating dependencies, please review the documentation here: | 6 # Before adding or updating dependencies, please review the documentation here: |
7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies | 7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies |
8 | 8 |
9 vars = { | 9 vars = { |
10 # The dart_root is the root of our sdk checkout. This is normally | 10 # The dart_root is the root of our sdk checkout. This is normally |
11 # simply sdk, but if using special gclient specs it can be different. | 11 # simply sdk, but if using special gclient specs it can be different. |
12 "dart_root": "sdk", | 12 "dart_root": "sdk", |
13 | 13 |
14 # We use mirrors of all github repos to guarantee reproducibility and | 14 # We use mirrors of all github repos to guarantee reproducibility and |
15 # consistency between what users see and what the bots see. | 15 # consistency between what users see and what the bots see. |
16 # We need the mirrors to not have 100+ bots pulling github constantly. | 16 # We need the mirrors to not have 100+ bots pulling github constantly. |
17 # We mirror our github repos on chromium git servers. | 17 # We mirror our github repos on chromium git servers. |
18 # DO NOT use this var if you don't see a mirror here: | 18 # DO NOT use this var if you don't see a mirror here: |
19 # https://chromium.googlesource.com/ | 19 # https://chromium.googlesource.com/ |
20 # named like: | 20 # named like: |
21 # external/github.com/dart-lang/NAME | 21 # external/github.com/dart-lang/NAME |
22 "github_mirror": | 22 "github_mirror": |
23 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 23 "https://chromium.googlesource.com/external/github.com/dart-lang/", |
24 | 24 |
25 # Chromium git | 25 # Chromium git |
26 "chromium_git": "https://chromium.googlesource.com", | 26 "chromium_git": "https://chromium.googlesource.com", |
27 "fuchsia_git": "https://fuchsia.googlesource.com", | 27 "fuchsia_git": "https://fuchsia.googlesource.com", |
28 | 28 |
29 # IMPORTANT: | 29 # IMPORTANT: |
30 # This should only be used for local testing. Before adding a new package, | 30 # This should only be used for local testing. Before adding a new package, |
31 # request a mirror of the package you need. To request a mirror, file an issue | 31 # request a mirror of the package you need. To request a mirror, file an issue |
32 # on github and add the label 'area-infrastructure'. | 32 # on github and add the label 'area-infrastructure'. |
33 # "github_dartlang": "https://github.com/dart-lang/%s.git", | 33 # "github_dartlang": "https://github.com/dart-lang/%s.git", |
34 | 34 |
35 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | |
36 "co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d", | 35 "co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d", |
37 | 36 |
38 # Revisions of GN related dependencies. This should match the revision | 37 # Revisions of GN related dependencies. This should match the revision |
39 # pulled by Flutter. | 38 # pulled by Flutter. |
40 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", | 39 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", |
41 | 40 |
42 # Scripts that make 'git cl format' work. | 41 # Scripts that make 'git cl format' work. |
43 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", | 42 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", |
44 | 43 |
45 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", | 44 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "usage_tag": "@3.3.0", | 132 "usage_tag": "@3.3.0", |
134 "utf_tag": "@0.9.0+3", | 133 "utf_tag": "@0.9.0+3", |
135 "watcher_tag": "@0.9.7+3", | 134 "watcher_tag": "@0.9.7+3", |
136 "web_socket_channel_tag": "@1.0.4", | 135 "web_socket_channel_tag": "@1.0.4", |
137 "WebCore_rev": "@3c45690813c112373757bbef53de1602a62af609", | 136 "WebCore_rev": "@3c45690813c112373757bbef53de1602a62af609", |
138 "yaml_tag": "@2.1.12", | 137 "yaml_tag": "@2.1.12", |
139 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 138 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
140 } | 139 } |
141 | 140 |
142 deps = { | 141 deps = { |
143 # Stuff needed for GYP to run. | |
144 Var("dart_root") + "/third_party/gyp": | |
145 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), | |
146 | |
147 # Stuff needed for GN build. | 142 # Stuff needed for GN build. |
148 Var("dart_root") + "/buildtools": | 143 Var("dart_root") + "/buildtools": |
149 Var("fuchsia_git") + "/buildtools" + Var("buildtools_revision"), | 144 Var("fuchsia_git") + "/buildtools" + Var("buildtools_revision"), |
150 Var("dart_root") + "/buildtools/clang_format/script": | 145 Var("dart_root") + "/buildtools/clang_format/script": |
151 Var("chromium_git") + "/chromium/llvm-project/cfe/tools/clang-format.git" + | 146 Var("chromium_git") + "/chromium/llvm-project/cfe/tools/clang-format.git" + |
152 Var("clang_format_scripts_rev"), | 147 Var("clang_format_scripts_rev"), |
153 | 148 |
154 Var("dart_root") + "/tests/co19/src": | 149 Var("dart_root") + "/tests/co19/src": |
155 (Var("github_mirror") % "co19") + Var("co19_rev"), | 150 Var("github_mirror") + "co19.git" + Var("co19_rev"), |
156 | 151 |
157 Var("dart_root") + "/third_party/zlib": | 152 Var("dart_root") + "/third_party/zlib": |
158 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 153 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
159 Var("zlib_rev"), | 154 Var("zlib_rev"), |
160 | 155 |
161 Var("dart_root") + "/third_party/boringssl": | 156 Var("dart_root") + "/third_party/boringssl": |
162 (Var("github_mirror") % "boringssl_gen") + Var("boringssl_gen_rev"), | 157 Var("github_mirror") + "boringssl_gen.git" + Var("boringssl_gen_rev"), |
163 Var("dart_root") + "/third_party/boringssl/src": | 158 Var("dart_root") + "/third_party/boringssl/src": |
164 "https://boringssl.googlesource.com/boringssl.git" + | 159 "https://boringssl.googlesource.com/boringssl.git" + |
165 Var("boringssl_rev"), | 160 Var("boringssl_rev"), |
166 | 161 |
167 Var("dart_root") + "/third_party/root_certificates": | 162 Var("dart_root") + "/third_party/root_certificates": |
168 (Var("github_mirror") % "root_certificates") + | 163 Var("github_mirror") + "root_certificates.git" + |
169 Var("root_certificates_rev"), | 164 Var("root_certificates_rev"), |
170 | 165 |
171 Var("dart_root") + "/third_party/jinja2": | 166 Var("dart_root") + "/third_party/jinja2": |
172 Var("chromium_git") + "/chromium/src/third_party/jinja2.git" + | 167 Var("chromium_git") + "/chromium/src/third_party/jinja2.git" + |
173 Var("jinja2_rev"), | 168 Var("jinja2_rev"), |
174 | 169 |
175 Var("dart_root") + "/third_party/ply": | 170 Var("dart_root") + "/third_party/ply": |
176 Var("chromium_git") + "/chromium/src/third_party/ply.git" + | 171 Var("chromium_git") + "/chromium/src/third_party/ply.git" + |
177 Var("ply_rev"), | 172 Var("ply_rev"), |
178 | 173 |
179 Var("dart_root") + "/tools/idl_parser": | 174 Var("dart_root") + "/tools/idl_parser": |
180 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" + | 175 Var("chromium_git") + "/chromium/src/tools/idl_parser.git" + |
181 Var("idl_parser_rev"), | 176 Var("idl_parser_rev"), |
182 | 177 |
183 Var("dart_root") + "/third_party/WebCore": | 178 Var("dart_root") + "/third_party/WebCore": |
184 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"), | 179 "https://github.com/dart-lang/webcore.git" + Var("WebCore_rev"), |
185 | 180 |
186 Var("dart_root") + "/third_party/tcmalloc/gperftools": | 181 Var("dart_root") + "/third_party/tcmalloc/gperftools": |
187 Var('chromium_git') + '/external/github.com/gperftools/gperftools.git' + | 182 Var('chromium_git') + '/external/github.com/gperftools/gperftools.git' + |
188 Var("gperftools_revision"), | 183 Var("gperftools_revision"), |
189 | 184 |
190 Var("dart_root") + "/third_party/pkg/args": | 185 Var("dart_root") + "/third_party/pkg/args": |
191 (Var("github_mirror") % "args") + Var("args_tag"), | 186 Var("github_mirror") + "args.git" + Var("args_tag"), |
192 Var("dart_root") + "/third_party/pkg/async": | 187 Var("dart_root") + "/third_party/pkg/async": |
193 (Var("github_mirror") % "async") + Var("async_tag"), | 188 Var("github_mirror") + "async.git" + Var("async_tag"), |
194 Var("dart_root") + "/third_party/pkg/barback": | 189 Var("dart_root") + "/third_party/pkg/barback": |
195 (Var("github_mirror") % "barback") + Var("barback_tag"), | 190 Var("github_mirror") + "barback.git" + Var("barback_tag"), |
196 Var("dart_root") + "/third_party/pkg/bazel_worker": | 191 Var("dart_root") + "/third_party/pkg/bazel_worker": |
197 (Var("github_mirror") % "bazel_worker") + Var("bazel_worker_tag"), | 192 Var("github_mirror") + "bazel_worker.git" + Var("bazel_worker_tag"), |
198 Var("dart_root") + "/third_party/pkg/boolean_selector": | 193 Var("dart_root") + "/third_party/pkg/boolean_selector": |
199 (Var("github_mirror") % "boolean_selector") + | 194 Var("github_mirror") + "boolean_selector.git" + |
200 Var("boolean_selector_tag"), | 195 Var("boolean_selector_tag"), |
201 Var("dart_root") + "/third_party/pkg/charcode": | 196 Var("dart_root") + "/third_party/pkg/charcode": |
202 (Var("github_mirror") % "charcode") + Var("charcode_tag"), | 197 Var("github_mirror") + "charcode.git" + Var("charcode_tag"), |
203 Var("dart_root") + "/third_party/pkg/cli_util": | 198 Var("dart_root") + "/third_party/pkg/cli_util": |
204 (Var("github_mirror") % "cli_util") + Var("cli_util_tag"), | 199 Var("github_mirror") + "cli_util.git" + Var("cli_util_tag"), |
205 Var("dart_root") + "/third_party/pkg/collection": | 200 Var("dart_root") + "/third_party/pkg/collection": |
206 (Var("github_mirror") % "collection") + Var("collection_tag"), | 201 Var("github_mirror") + "collection.git" + Var("collection_tag"), |
207 Var("dart_root") + "/third_party/pkg/convert": | 202 Var("dart_root") + "/third_party/pkg/convert": |
208 (Var("github_mirror") % "convert") + Var("convert_tag"), | 203 Var("github_mirror") + "convert.git" + Var("convert_tag"), |
209 Var("dart_root") + "/third_party/pkg/crypto": | 204 Var("dart_root") + "/third_party/pkg/crypto": |
210 (Var("github_mirror") % "crypto") + Var("crypto_tag"), | 205 Var("github_mirror") + "crypto.git" + Var("crypto_tag"), |
211 Var("dart_root") + "/third_party/pkg/csslib": | 206 Var("dart_root") + "/third_party/pkg/csslib": |
212 (Var("github_mirror") % "csslib") + Var("csslib_tag"), | 207 Var("github_mirror") + "csslib.git" + Var("csslib_tag"), |
213 Var("dart_root") + "/third_party/pkg_tested/dart_style": | 208 Var("dart_root") + "/third_party/pkg_tested/dart_style": |
214 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), | 209 Var("github_mirror") + "dart_style.git" + Var("dart_style_tag"), |
215 Var("dart_root") + "/third_party/pkg/dart2js_info": | 210 Var("dart_root") + "/third_party/pkg/dart2js_info": |
216 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_tag"), | 211 Var("github_mirror") + "dart2js_info.git" + Var("dart2js_info_tag"), |
217 Var("dart_root") + "/third_party/pkg/dartdoc": | 212 Var("dart_root") + "/third_party/pkg/dartdoc": |
218 (Var("github_mirror") % "dartdoc") + Var("dartdoc_tag"), | 213 Var("github_mirror") + "dartdoc.git" + Var("dartdoc_tag"), |
219 Var("dart_root") + "/third_party/pkg/fixnum": | 214 Var("dart_root") + "/third_party/pkg/fixnum": |
220 (Var("github_mirror") % "fixnum") + Var("fixnum_tag"), | 215 Var("github_mirror") + "fixnum.git" + Var("fixnum_tag"), |
221 Var("dart_root") + "/third_party/pkg/func": | 216 Var("dart_root") + "/third_party/pkg/func": |
222 (Var("github_mirror") % "func") + Var("func_tag"), | 217 Var("github_mirror") + "func.git" + Var("func_tag"), |
223 Var("dart_root") + "/third_party/pkg/glob": | 218 Var("dart_root") + "/third_party/pkg/glob": |
224 (Var("github_mirror") % "glob") + Var("glob_tag"), | 219 Var("github_mirror") + "glob.git" + Var("glob_tag"), |
225 Var("dart_root") + "/third_party/pkg/html": | 220 Var("dart_root") + "/third_party/pkg/html": |
226 (Var("github_mirror") % "html") + Var("html_tag"), | 221 Var("github_mirror") + "html.git" + Var("html_tag"), |
227 Var("dart_root") + "/third_party/pkg/http": | 222 Var("dart_root") + "/third_party/pkg/http": |
228 (Var("github_mirror") % "http") + Var("http_tag"), | 223 Var("github_mirror") + "http.git" + Var("http_tag"), |
229 Var("dart_root") + "/third_party/pkg/http_multi_server": | 224 Var("dart_root") + "/third_party/pkg/http_multi_server": |
230 (Var("github_mirror") % "http_multi_server") + | 225 Var("github_mirror") + "http_multi_server.git" + |
231 Var("http_multi_server_tag"), | 226 Var("http_multi_server_tag"), |
232 Var("dart_root") + "/third_party/pkg/http_parser": | 227 Var("dart_root") + "/third_party/pkg/http_parser": |
233 (Var("github_mirror") % "http_parser") + Var("http_parser_tag"), | 228 Var("github_mirror") + "http_parser.git" + Var("http_parser_tag"), |
234 Var("dart_root") + "/third_party/pkg/http_throttle": | 229 Var("dart_root") + "/third_party/pkg/http_throttle": |
235 (Var("github_mirror") % "http_throttle") + | 230 Var("github_mirror") + "http_throttle.git" + |
236 Var("http_throttle_tag"), | 231 Var("http_throttle_tag"), |
237 Var("dart_root") + "/third_party/pkg/intl": | 232 Var("dart_root") + "/third_party/pkg/intl": |
238 (Var("github_mirror") % "intl") + Var("intl_tag"), | 233 Var("github_mirror") + "intl.git" + Var("intl_tag"), |
239 Var("dart_root") + "/third_party/pkg/isolate": | 234 Var("dart_root") + "/third_party/pkg/isolate": |
240 (Var("github_mirror") % "isolate") + Var("isolate_tag"), | 235 Var("github_mirror") + "isolate.git" + Var("isolate_tag"), |
241 Var("dart_root") + "/third_party/pkg/json_rpc_2": | 236 Var("dart_root") + "/third_party/pkg/json_rpc_2": |
242 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_tag"), | 237 Var("github_mirror") + "json_rpc_2.git" + Var("json_rpc_2_tag"), |
243 Var("dart_root") + "/third_party/pkg/linter": | 238 Var("dart_root") + "/third_party/pkg/linter": |
244 (Var("github_mirror") % "linter") + Var("linter_tag"), | 239 Var("github_mirror") + "linter.git" + Var("linter_tag"), |
245 Var("dart_root") + "/third_party/pkg/logging": | 240 Var("dart_root") + "/third_party/pkg/logging": |
246 (Var("github_mirror") % "logging") + Var("logging_tag"), | 241 Var("github_mirror") + "logging.git" + Var("logging_tag"), |
247 Var("dart_root") + "/third_party/pkg/markdown": | 242 Var("dart_root") + "/third_party/pkg/markdown": |
248 (Var("github_mirror") % "markdown") + Var("markdown_tag"), | 243 Var("github_mirror") + "markdown.git" + Var("markdown_tag"), |
249 Var("dart_root") + "/third_party/pkg/matcher": | 244 Var("dart_root") + "/third_party/pkg/matcher": |
250 (Var("github_mirror") % "matcher") + Var("matcher_tag"), | 245 Var("github_mirror") + "matcher.git" + Var("matcher_tag"), |
251 Var("dart_root") + "/third_party/pkg/mime": | 246 Var("dart_root") + "/third_party/pkg/mime": |
252 (Var("github_mirror") % "mime") + Var("mime_rev"), | 247 Var("github_mirror") + "mime.git" + Var("mime_rev"), |
253 Var("dart_root") + "/third_party/pkg/mockito": | 248 Var("dart_root") + "/third_party/pkg/mockito": |
254 "https://github.com/dart-lang/mockito.git" + Var("mockito_tag"), | 249 "https://github.com/dart-lang/mockito.git" + Var("mockito_tag"), |
255 Var("dart_root") + "/third_party/pkg/mustache4dart": | 250 Var("dart_root") + "/third_party/pkg/mustache4dart": |
256 Var("chromium_git") | 251 Var("chromium_git") |
257 + "/external/github.com/valotas/mustache4dart.git" | 252 + "/external/github.com/valotas/mustache4dart.git" |
258 + Var("mustache4dart_tag"), | 253 + Var("mustache4dart_tag"), |
259 Var("dart_root") + "/third_party/pkg/oauth2": | 254 Var("dart_root") + "/third_party/pkg/oauth2": |
260 (Var("github_mirror") % "oauth2") + Var("oauth2_tag"), | 255 Var("github_mirror") + "oauth2.git" + Var("oauth2_tag"), |
261 Var("dart_root") + "/third_party/observatory_pub_packages": | 256 Var("dart_root") + "/third_party/observatory_pub_packages": |
262 (Var("github_mirror") % "observatory_pub_packages") | 257 Var("github_mirror") + "observatory_pub_packages.git" |
263 + Var("observatory_pub_packages_rev"), | 258 + Var("observatory_pub_packages_rev"), |
264 Var("dart_root") + "/third_party/pkg_tested/package_config": | 259 Var("dart_root") + "/third_party/pkg_tested/package_config": |
265 (Var("github_mirror") % "package_config") + | 260 Var("github_mirror") + "package_config.git" + |
266 Var("package_config_tag"), | 261 Var("package_config_tag"), |
267 Var("dart_root") + "/third_party/pkg_tested/package_resolver": | 262 Var("dart_root") + "/third_party/pkg_tested/package_resolver": |
268 (Var("github_mirror") % "package_resolver") + Var("package_resolver_tag"), | 263 Var("github_mirror") + "package_resolver.git" + Var("package_resolver_tag"
), |
269 Var("dart_root") + "/third_party/pkg/path": | 264 Var("dart_root") + "/third_party/pkg/path": |
270 (Var("github_mirror") % "path") + Var("path_tag"), | 265 Var("github_mirror") + "path.git" + Var("path_tag"), |
271 Var("dart_root") + "/third_party/pkg/plugin": | 266 Var("dart_root") + "/third_party/pkg/plugin": |
272 (Var("github_mirror") % "plugin") + Var("plugin_tag"), | 267 Var("github_mirror") + "plugin.git" + Var("plugin_tag"), |
273 Var("dart_root") + "/third_party/pkg/pool": | 268 Var("dart_root") + "/third_party/pkg/pool": |
274 (Var("github_mirror") % "pool") + Var("pool_tag"), | 269 Var("github_mirror") + "pool.git" + Var("pool_tag"), |
275 Var("dart_root") + "/third_party/pkg/protobuf": | 270 Var("dart_root") + "/third_party/pkg/protobuf": |
276 (Var("github_mirror") % "protobuf") + Var("protobuf_tag"), | 271 Var("github_mirror") + "protobuf.git" + Var("protobuf_tag"), |
277 Var("dart_root") + "/third_party/pkg/pub_semver": | 272 Var("dart_root") + "/third_party/pkg/pub_semver": |
278 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), | 273 Var("github_mirror") + "pub_semver.git" + Var("pub_semver_tag"), |
279 Var("dart_root") + "/third_party/pkg/pub": | 274 Var("dart_root") + "/third_party/pkg/pub": |
280 (Var("github_mirror") % "pub") + Var("pub_rev"), | 275 Var("github_mirror") + "pub.git" + Var("pub_rev"), |
281 Var("dart_root") + "/third_party/pkg/quiver": | 276 Var("dart_root") + "/third_party/pkg/quiver": |
282 Var("chromium_git") | 277 Var("chromium_git") |
283 + "/external/github.com/google/quiver-dart.git" | 278 + "/external/github.com/google/quiver-dart.git" |
284 + Var("quiver_tag"), | 279 + Var("quiver_tag"), |
285 Var("dart_root") + "/third_party/pkg/resource": | 280 Var("dart_root") + "/third_party/pkg/resource": |
286 (Var("github_mirror") % "resource") + Var("resource_rev"), | 281 Var("github_mirror") + "resource.git" + Var("resource_rev"), |
287 Var("dart_root") + "/third_party/pkg/scheduled_test": | 282 Var("dart_root") + "/third_party/pkg/scheduled_test": |
288 (Var("github_mirror") % "scheduled_test") + Var("scheduled_test_tag"), | 283 Var("github_mirror") + "scheduled_test.git" + Var("scheduled_test_tag"), |
289 Var("dart_root") + "/third_party/pkg/shelf": | 284 Var("dart_root") + "/third_party/pkg/shelf": |
290 (Var("github_mirror") % "shelf") + Var("shelf_tag"), | 285 Var("github_mirror") + "shelf.git" + Var("shelf_tag"), |
291 Var("dart_root") + "/third_party/pkg/shelf_packages_handler": | 286 Var("dart_root") + "/third_party/pkg/shelf_packages_handler": |
292 (Var("github_mirror") % "shelf_packages_handler") | 287 Var("github_mirror") + "shelf_packages_handler.git" |
293 + Var("shelf_packages_handler_tag"), | 288 + Var("shelf_packages_handler_tag"), |
294 Var("dart_root") + "/third_party/pkg/shelf_static": | 289 Var("dart_root") + "/third_party/pkg/shelf_static": |
295 (Var("github_mirror") % "shelf_static") + Var("shelf_static_tag"), | 290 Var("github_mirror") + "shelf_static.git" + Var("shelf_static_tag"), |
296 Var("dart_root") + "/third_party/pkg/shelf_web_socket": | 291 Var("dart_root") + "/third_party/pkg/shelf_web_socket": |
297 (Var("github_mirror") % "shelf_web_socket") + | 292 Var("github_mirror") + "shelf_web_socket.git" + |
298 Var("shelf_web_socket_tag"), | 293 Var("shelf_web_socket_tag"), |
299 Var("dart_root") + "/third_party/pkg/source_maps": | 294 Var("dart_root") + "/third_party/pkg/source_maps": |
300 (Var("github_mirror") % "source_maps") + Var("source_maps_tag"), | 295 Var("github_mirror") + "source_maps.git" + Var("source_maps_tag"), |
301 Var("dart_root") + "/third_party/pkg/source_span": | 296 Var("dart_root") + "/third_party/pkg/source_span": |
302 (Var("github_mirror") % "source_span") + Var("source_span_tag"), | 297 Var("github_mirror") + "source_span.git" + Var("source_span_tag"), |
303 Var("dart_root") + "/third_party/pkg/source_map_stack_trace": | 298 Var("dart_root") + "/third_party/pkg/source_map_stack_trace": |
304 (Var("github_mirror") % "source_map_stack_trace") + | 299 Var("github_mirror") + "source_map_stack_trace.git" + |
305 Var("source_map_stack_trace_tag"), | 300 Var("source_map_stack_trace_tag"), |
306 Var("dart_root") + "/third_party/pkg/stack_trace": | 301 Var("dart_root") + "/third_party/pkg/stack_trace": |
307 (Var("github_mirror") % "stack_trace") + Var("stack_trace_tag"), | 302 Var("github_mirror") + "stack_trace.git" + Var("stack_trace_tag"), |
308 Var("dart_root") + "/third_party/pkg/stream_channel": | 303 Var("dart_root") + "/third_party/pkg/stream_channel": |
309 (Var("github_mirror") % "stream_channel") + | 304 Var("github_mirror") + "stream_channel.git" + |
310 Var("stream_channel_tag"), | 305 Var("stream_channel_tag"), |
311 Var("dart_root") + "/third_party/pkg/string_scanner": | 306 Var("dart_root") + "/third_party/pkg/string_scanner": |
312 (Var("github_mirror") % "string_scanner") + | 307 Var("github_mirror") + "string_scanner.git" + |
313 Var("string_scanner_tag"), | 308 Var("string_scanner_tag"), |
314 Var("dart_root") + "/third_party/sunflower": | 309 Var("dart_root") + "/third_party/sunflower": |
315 (Var("github_mirror") % "sample-sunflower") + | 310 Var("github_mirror") + "sample-sunflower.git" + |
316 Var("sunflower_rev"), | 311 Var("sunflower_rev"), |
317 Var("dart_root") + "/third_party/pkg/test": | 312 Var("dart_root") + "/third_party/pkg/test": |
318 (Var("github_mirror") % "test") + Var("test_tag"), | 313 Var("github_mirror") + "test.git" + Var("test_tag"), |
319 Var("dart_root") + "/third_party/pkg/test_reflective_loader": | 314 Var("dart_root") + "/third_party/pkg/test_reflective_loader": |
320 (Var("github_mirror") % "test_reflective_loader") + | 315 Var("github_mirror") + "test_reflective_loader.git" + |
321 Var("test_reflective_loader_tag"), | 316 Var("test_reflective_loader_tag"), |
322 Var("dart_root") + "/third_party/pkg/tuple": | 317 Var("dart_root") + "/third_party/pkg/tuple": |
323 (Var("github_mirror") % "tuple") + Var("tuple_tag"), | 318 Var("github_mirror") + "tuple.git" + Var("tuple_tag"), |
324 Var("dart_root") + "/third_party/pkg/typed_data": | 319 Var("dart_root") + "/third_party/pkg/typed_data": |
325 (Var("github_mirror") % "typed_data") + Var("typed_data_tag"), | 320 Var("github_mirror") + "typed_data.git" + Var("typed_data_tag"), |
326 Var("dart_root") + "/third_party/pkg/usage": | 321 Var("dart_root") + "/third_party/pkg/usage": |
327 (Var("github_mirror") % "usage") + Var("usage_tag"), | 322 Var("github_mirror") + "usage.git" + Var("usage_tag"), |
328 Var("dart_root") + "/third_party/pkg/utf": | 323 Var("dart_root") + "/third_party/pkg/utf": |
329 (Var("github_mirror") % "utf") + Var("utf_tag"), | 324 Var("github_mirror") + "utf.git" + Var("utf_tag"), |
330 Var("dart_root") + "/third_party/pkg/watcher": | 325 Var("dart_root") + "/third_party/pkg/watcher": |
331 (Var("github_mirror") % "watcher") + Var("watcher_tag"), | 326 Var("github_mirror") + "watcher.git" + Var("watcher_tag"), |
332 Var("dart_root") + "/third_party/pkg/web_socket_channel": | 327 Var("dart_root") + "/third_party/pkg/web_socket_channel": |
333 (Var("github_mirror") % "web_socket_channel") + | 328 Var("github_mirror") + "web_socket_channel.git" + |
334 Var("web_socket_channel_tag"), | 329 Var("web_socket_channel_tag"), |
335 Var("dart_root") + "/third_party/pkg/yaml": | 330 Var("dart_root") + "/third_party/pkg/yaml": |
336 (Var("github_mirror") % "yaml") + Var("yaml_tag"), | 331 Var("github_mirror") + "yaml.git" + Var("yaml_tag"), |
337 } | 332 } |
338 | 333 |
339 deps_os = { | 334 deps_os = { |
340 "win": { | 335 "win": { |
341 Var("dart_root") + "/third_party/cygwin": | 336 Var("dart_root") + "/third_party/cygwin": |
342 Var("chromium_git") + "/chromium/deps/cygwin.git" + | 337 Var("chromium_git") + "/chromium/deps/cygwin.git" + |
343 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", | 338 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", |
344 }, | 339 }, |
345 } | 340 } |
346 | 341 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 # Update the Windows toolchain if necessary. | 475 # Update the Windows toolchain if necessary. |
481 'name': 'win_toolchain', | 476 'name': 'win_toolchain', |
482 'pattern': '.', | 477 'pattern': '.', |
483 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 478 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
484 }, | 479 }, |
485 { | 480 { |
486 "pattern": ".", | 481 "pattern": ".", |
487 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 482 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
488 }, | 483 }, |
489 ] | 484 ] |
OLD | NEW |