| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 Var("dart_root") + "/third_party/WebCore": | 167 Var("dart_root") + "/third_party/WebCore": |
| 168 Var("third_party") + "/WebCore" + Var("WebCore_rev"), | 168 Var("third_party") + "/WebCore" + Var("WebCore_rev"), |
| 169 Var("dart_root") + "/third_party/observatory_pub_packages": | 169 Var("dart_root") + "/third_party/observatory_pub_packages": |
| 170 Var("third_party") + "/observatory_pub_packages" + | 170 Var("third_party") + "/observatory_pub_packages" + |
| 171 Var("observatory_pub_packages_rev"), | 171 Var("observatory_pub_packages_rev"), |
| 172 | 172 |
| 173 Var("dart_root") + "/third_party/dart-services": | 173 Var("dart_root") + "/third_party/dart-services": |
| 174 (Var("github_mirror") % "dart-services") + | 174 (Var("github_mirror") % "dart-services") + |
| 175 Var("dart_services_rev"), | 175 Var("dart_services_rev"), |
| 176 | 176 |
| 177 Var("dart_root") + "/third_party/pkg_tested/analyzer_cli": | 177 Var("dart_root") + "/third_party/pkg/analyzer_cli": |
| 178 (Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_tag"), | 178 (Var("github_mirror") % "analyzer_cli") + Var("analyzer_cli_tag"), |
| 179 Var("dart_root") + "/third_party/pkg/args": | 179 Var("dart_root") + "/third_party/pkg/args": |
| 180 (Var("github_mirror") % "args") + Var("args_tag"), | 180 (Var("github_mirror") % "args") + Var("args_tag"), |
| 181 Var("dart_root") + "/third_party/pkg/async_await": | 181 Var("dart_root") + "/third_party/pkg/async_await": |
| 182 (Var("github_mirror") % "async_await") + Var("async_await_rev"), | 182 (Var("github_mirror") % "async_await") + Var("async_await_rev"), |
| 183 Var("dart_root") + "/third_party/pkg/barback": | 183 Var("dart_root") + "/third_party/pkg/barback": |
| 184 (Var("github_mirror") % "barback") + Var("barback_rev"), | 184 (Var("github_mirror") % "barback") + Var("barback_rev"), |
| 185 Var("dart_root") + "/third_party/pkg/charcode": | 185 Var("dart_root") + "/third_party/pkg/charcode": |
| 186 "https://github.com/dart-lang/charcode.git" + Var("charcode_tag"), | 186 "https://github.com/dart-lang/charcode.git" + Var("charcode_tag"), |
| 187 Var("dart_root") + "/third_party/pkg/cli_util": | 187 Var("dart_root") + "/third_party/pkg/cli_util": |
| (...skipping 146 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 |