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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 Var("dart_root") + "/third_party/pkg/quiver": | 259 Var("dart_root") + "/third_party/pkg/quiver": |
260 Var("chromium_git") | 260 Var("chromium_git") |
261 + "/external/github.com/google/quiver-dart.git" | 261 + "/external/github.com/google/quiver-dart.git" |
262 + Var("quiver_tag"), | 262 + Var("quiver_tag"), |
263 Var("dart_root") + "/third_party/pkg/scheduled_test": | 263 Var("dart_root") + "/third_party/pkg/scheduled_test": |
264 (Var("github_mirror") % "scheduled_test") + | 264 (Var("github_mirror") % "scheduled_test") + |
265 Var("scheduled_test_tag"), | 265 Var("scheduled_test_tag"), |
266 Var("dart_root") + "/third_party/pkg/shelf": | 266 Var("dart_root") + "/third_party/pkg/shelf": |
267 (Var("github_mirror") % "shelf") + Var("shelf_rev"), | 267 (Var("github_mirror") % "shelf") + Var("shelf_rev"), |
268 Var("dart_root") + "/third_party/pkg/shelf_static": | 268 Var("dart_root") + "/third_party/pkg/shelf_static": |
269 "https://github.com/kevmoo/shelf_static.dart.git" + | 269 "https://github.com/dart-lang/shelf_static.git" + |
270 Var("shelf_static_rev"), | 270 Var("shelf_static_rev"), |
271 Var("dart_root") + "/third_party/pkg/shelf_web_socket": | 271 Var("dart_root") + "/third_party/pkg/shelf_web_socket": |
272 (Var("github_mirror") % "shelf_web_socket") + | 272 (Var("github_mirror") % "shelf_web_socket") + |
273 Var("shelf_web_socket_rev"), | 273 Var("shelf_web_socket_rev"), |
274 Var("dart_root") + "/third_party/pkg/smoke": | 274 Var("dart_root") + "/third_party/pkg/smoke": |
275 (Var("github_mirror") % "smoke") + Var("smoke_rev"), | 275 (Var("github_mirror") % "smoke") + Var("smoke_rev"), |
276 Var("dart_root") + "/third_party/pkg/source_maps": | 276 Var("dart_root") + "/third_party/pkg/source_maps": |
277 (Var("github_mirror") % "source_maps") + Var("source_maps_tag"), | 277 (Var("github_mirror") % "source_maps") + Var("source_maps_tag"), |
278 Var("dart_root") + "/third_party/pkg/source_span": | 278 Var("dart_root") + "/third_party/pkg/source_span": |
279 (Var("github_mirror") % "source_span") + Var("source_span_tag"), | 279 (Var("github_mirror") % "source_span") + Var("source_span_tag"), |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 '--no_resume', | 374 '--no_resume', |
375 '--bucket', | 375 '--bucket', |
376 'dart-dependencies', | 376 'dart-dependencies', |
377 '-d', | 377 '-d', |
378 '-r', | 378 '-r', |
379 Var('dart_root') + '/third_party/d8', | 379 Var('dart_root') + '/third_party/d8', |
380 ], | 380 ], |
381 }, | 381 }, |
382 | 382 |
383 ] | 383 ] |
OLD | NEW |