| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 Var("http_throttle_rev"), | 215 Var("http_throttle_rev"), |
| 216 Var("dart_root") + "/third_party/pkg/intl": | 216 Var("dart_root") + "/third_party/pkg/intl": |
| 217 (Var("github_mirror") % "intl") + Var("intl_rev"), | 217 (Var("github_mirror") % "intl") + Var("intl_rev"), |
| 218 Var("dart_root") + "/third_party/pkg/json_rpc_2": | 218 Var("dart_root") + "/third_party/pkg/json_rpc_2": |
| 219 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_tag"), | 219 (Var("github_mirror") % "json_rpc_2") + Var("json_rpc_2_tag"), |
| 220 Var("dart_root") + "/third_party/pkg/linter": | 220 Var("dart_root") + "/third_party/pkg/linter": |
| 221 (Var("github_mirror") % "linter") + Var("linter_tag"), | 221 (Var("github_mirror") % "linter") + Var("linter_tag"), |
| 222 Var("dart_root") + "/third_party/pkg/logging": | 222 Var("dart_root") + "/third_party/pkg/logging": |
| 223 (Var("github_mirror") % "logging") + Var("logging_rev"), | 223 (Var("github_mirror") % "logging") + Var("logging_rev"), |
| 224 Var("dart_root") + "/third_party/pkg/markdown": | 224 Var("dart_root") + "/third_party/pkg/markdown": |
| 225 "https://github.com/dart-lang/" + | 225 (Var("github_mirror") % "markdown") + Var("markdown_rev"), |
| 226 "markdown.git" + Var("markdown_rev"), | |
| 227 Var("dart_root") + "/third_party/pkg/matcher": | 226 Var("dart_root") + "/third_party/pkg/matcher": |
| 228 (Var("github_mirror") % "matcher") + Var("matcher_tag"), | 227 (Var("github_mirror") % "matcher") + Var("matcher_tag"), |
| 229 Var("dart_root") + "/third_party/pkg/metatest": | 228 Var("dart_root") + "/third_party/pkg/metatest": |
| 230 (Var("github_mirror") % "metatest") + Var("metatest_rev"), | 229 (Var("github_mirror") % "metatest") + Var("metatest_rev"), |
| 231 Var("dart_root") + "/third_party/pkg/mime": | 230 Var("dart_root") + "/third_party/pkg/mime": |
| 232 (Var("github_mirror") % "mime") + Var("mime_rev"), | 231 (Var("github_mirror") % "mime") + Var("mime_rev"), |
| 233 Var("dart_root") + "/third_party/pkg/mustache4dart": | 232 Var("dart_root") + "/third_party/pkg/mustache4dart": |
| 234 Var("chromium_git") | 233 Var("chromium_git") |
| 235 + "/external/github.com/valotas/mustache4dart.git" | 234 + "/external/github.com/valotas/mustache4dart.git" |
| 236 + Var("mustache4dart_rev"), | 235 + Var("mustache4dart_rev"), |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 '--no_resume', | 371 '--no_resume', |
| 373 '--bucket', | 372 '--bucket', |
| 374 'dart-dependencies', | 373 'dart-dependencies', |
| 375 '-d', | 374 '-d', |
| 376 '-r', | 375 '-r', |
| 377 Var('dart_root') + '/third_party/d8', | 376 Var('dart_root') + '/third_party/d8', |
| 378 ], | 377 ], |
| 379 }, | 378 }, |
| 380 | 379 |
| 381 ] | 380 ] |
| OLD | NEW |