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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 Var("chromium_git") | 233 Var("chromium_git") |
234 + "/external/github.com/valotas/mustache4dart.git" | 234 + "/external/github.com/valotas/mustache4dart.git" |
235 + Var("mustache4dart_rev"), | 235 + Var("mustache4dart_rev"), |
236 Var("dart_root") + "/third_party/pkg/oauth2": | 236 Var("dart_root") + "/third_party/pkg/oauth2": |
237 (Var("github_mirror") % "oauth2") + Var("oauth2_rev"), | 237 (Var("github_mirror") % "oauth2") + Var("oauth2_rev"), |
238 Var("dart_root") + "/third_party/pkg/observe": | 238 Var("dart_root") + "/third_party/pkg/observe": |
239 (Var("github_mirror") % "observe") + Var("observe_rev"), | 239 (Var("github_mirror") % "observe") + Var("observe_rev"), |
240 Var("dart_root") + "/third_party/observatory_pub_packages": | 240 Var("dart_root") + "/third_party/observatory_pub_packages": |
241 (Var("github_mirror") % "observatory_pub_packages") | 241 (Var("github_mirror") % "observatory_pub_packages") |
242 + Var("observatory_pub_packages_rev"), | 242 + Var("observatory_pub_packages_rev"), |
243 Var("dart_root") + "/third_party/pkg/package_config": | 243 Var("dart_root") + "/third_party/pkg_tested/package_config": |
244 (Var("github_mirror") % "package_config") + | 244 (Var("github_mirror") % "package_config") + |
245 Var("package_config_tag"), | 245 Var("package_config_tag"), |
246 Var("dart_root") + "/third_party/pkg/path": | 246 Var("dart_root") + "/third_party/pkg/path": |
247 (Var("github_mirror") % "path") + Var("path_tag"), | 247 (Var("github_mirror") % "path") + Var("path_tag"), |
248 Var("dart_root") + "/third_party/pkg/plugin": | 248 Var("dart_root") + "/third_party/pkg/plugin": |
249 (Var("github_mirror") % "plugin") + Var("plugin_tag"), | 249 (Var("github_mirror") % "plugin") + Var("plugin_tag"), |
250 Var("dart_root") + "/third_party/pkg/pool": | 250 Var("dart_root") + "/third_party/pkg/pool": |
251 (Var("github_mirror") % "pool") + Var("pool_rev"), | 251 (Var("github_mirror") % "pool") + Var("pool_rev"), |
252 Var("dart_root") + "/third_party/pkg/pub_semver": | 252 Var("dart_root") + "/third_party/pkg/pub_semver": |
253 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), | 253 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 '--no_resume', | 371 '--no_resume', |
372 '--bucket', | 372 '--bucket', |
373 'dart-dependencies', | 373 'dart-dependencies', |
374 '-d', | 374 '-d', |
375 '-r', | 375 '-r', |
376 Var('dart_root') + '/third_party/d8', | 376 Var('dart_root') + '/third_party/d8', |
377 ], | 377 ], |
378 }, | 378 }, |
379 | 379 |
380 ] | 380 ] |
OLD | NEW |