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 vars = { | 5 vars = { |
6 # The dart_root is the root of our sdk checkout. This is normally | 6 # The dart_root is the root of our sdk checkout. This is normally |
7 # simply sdk, but if using special gclient specs it can be different. | 7 # simply sdk, but if using special gclient specs it can be different. |
8 "dart_root": "sdk", | 8 "dart_root": "sdk", |
9 | 9 |
10 # The svn location to pull out dependencies from | 10 # The svn location to pull out dependencies from |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 (Var("github_mirror") % "package_config") + | 232 (Var("github_mirror") % "package_config") + |
233 Var("package_config_tag"), | 233 Var("package_config_tag"), |
234 Var("dart_root") + "/third_party/pkg/path": | 234 Var("dart_root") + "/third_party/pkg/path": |
235 (Var("github_mirror") % "path") + Var("path_rev"), | 235 (Var("github_mirror") % "path") + Var("path_rev"), |
236 Var("dart_root") + "/third_party/pkg/plugin": | 236 Var("dart_root") + "/third_party/pkg/plugin": |
237 (Var("github_mirror") % "plugin") + Var("plugin_tag"), | 237 (Var("github_mirror") % "plugin") + Var("plugin_tag"), |
238 Var("dart_root") + "/third_party/pkg/pool": | 238 Var("dart_root") + "/third_party/pkg/pool": |
239 (Var("github_mirror") % "pool") + Var("pool_rev"), | 239 (Var("github_mirror") % "pool") + Var("pool_rev"), |
240 Var("dart_root") + "/third_party/pkg/pub_semver": | 240 Var("dart_root") + "/third_party/pkg/pub_semver": |
241 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), | 241 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), |
242 Var("dart_root") + "/third_party/pkg_tested/pub": | 242 Var("dart_root") + "/third_party/pkg/pub": |
243 ("https://github.com/dart-lang/pub.git") + Var("pub_rev"), | 243 ("https://github.com/dart-lang/pub.git") + Var("pub_rev"), |
244 Var("dart_root") + "/third_party/pkg/scheduled_test": | 244 Var("dart_root") + "/third_party/pkg/scheduled_test": |
245 (Var("github_mirror") % "scheduled_test") + | 245 (Var("github_mirror") % "scheduled_test") + |
246 Var("scheduled_test_tag"), | 246 Var("scheduled_test_tag"), |
247 Var("dart_root") + "/third_party/pkg/shelf": | 247 Var("dart_root") + "/third_party/pkg/shelf": |
248 (Var("github_mirror") % "shelf") + Var("shelf_rev"), | 248 (Var("github_mirror") % "shelf") + Var("shelf_rev"), |
249 Var("dart_root") + "/third_party/pkg/shelf_web_socket": | 249 Var("dart_root") + "/third_party/pkg/shelf_web_socket": |
250 (Var("github_mirror") % "shelf_web_socket") + | 250 (Var("github_mirror") % "shelf_web_socket") + |
251 Var("shelf_web_socket_rev"), | 251 Var("shelf_web_socket_rev"), |
252 Var("dart_root") + "/third_party/pkg/smoke": | 252 Var("dart_root") + "/third_party/pkg/smoke": |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 '--no_auth', | 334 '--no_auth', |
335 '--no_resume', | 335 '--no_resume', |
336 '--bucket', | 336 '--bucket', |
337 'dart-dependencies', | 337 'dart-dependencies', |
338 '-d', | 338 '-d', |
339 '-r', | 339 '-r', |
340 Var('dart_root') + '/tools/testing/bin', | 340 Var('dart_root') + '/tools/testing/bin', |
341 ], | 341 ], |
342 }, | 342 }, |
343 ] | 343 ] |
OLD | NEW |