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 |
11 "third_party": "http://dart.googlecode.com/svn/third_party", | 11 "third_party": "http://dart.googlecode.com/svn/third_party", |
12 | 12 |
13 # The svn location for pulling pinned revisions of bleeding edge dependencies. | |
14 "bleeding_edge": "http://dart.googlecode.com/svn/branches/bleeding_edge", | |
15 | |
16 # Use this googlecode_url variable only if there is an internal mirror for it. | 13 # Use this googlecode_url variable only if there is an internal mirror for it. |
17 # If you do not know, use the full path while defining your new deps entry. | 14 # If you do not know, use the full path while defining your new deps entry. |
18 "googlecode_url": "http://%s.googlecode.com/svn", | 15 "googlecode_url": "http://%s.googlecode.com/svn", |
19 | 16 |
20 # We use mirrors of all github repos to guarantee reproducibility and | 17 # We use mirrors of all github repos to guarantee reproducibility and |
21 # consistency between what users see and what the bots see. | 18 # consistency between what users see and what the bots see. |
22 # We need the mirrors to not have 100+ bots pulling github constantly. | 19 # We need the mirrors to not have 100+ bots pulling github constantly. |
23 # We mirror our github repos on chromium git servers. | 20 # We mirror our github repos on chromium git servers. |
24 # DO NOT use this var if you don't see a mirror here: | 21 # DO NOT use this var if you don't see a mirror here: |
25 # https://chromium.googlesource.com/ | 22 # https://chromium.googlesource.com/ |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 (Var("github_mirror") % "watcher") + Var("watcher_tag"), | 290 (Var("github_mirror") % "watcher") + Var("watcher_tag"), |
294 Var("dart_root") + "/third_party/pkg/web_components": | 291 Var("dart_root") + "/third_party/pkg/web_components": |
295 (Var("github_mirror") % "web-components") + | 292 (Var("github_mirror") % "web-components") + |
296 Var("web_components_rev"), | 293 Var("web_components_rev"), |
297 Var("dart_root") + "/third_party/pkg/when": | 294 Var("dart_root") + "/third_party/pkg/when": |
298 (Var("github_mirror") % "when") + Var("when_tag"), | 295 (Var("github_mirror") % "when") + Var("when_tag"), |
299 Var("dart_root") + "/third_party/pkg/which": | 296 Var("dart_root") + "/third_party/pkg/which": |
300 (Var("github_mirror") % "which") + Var("which_tag"), | 297 (Var("github_mirror") % "which") + Var("which_tag"), |
301 Var("dart_root") + "/third_party/pkg/yaml": | 298 Var("dart_root") + "/third_party/pkg/yaml": |
302 (Var("github_mirror") % "yaml") + Var("yaml_tag"), | 299 (Var("github_mirror") % "yaml") + Var("yaml_tag"), |
303 | |
304 # These specific versions of barback and source_maps are used for testing and | |
305 # should be pulled from bleeding_edge even on channels. | |
306 Var("dart_root") + "/third_party/pkg/barback-0.13.0": | |
307 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.13.0_rev"), | |
308 Var("dart_root") + "/third_party/pkg/barback-0.14.0+3": | |
309 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.14.0_rev"), | |
310 Var("dart_root") + "/third_party/pkg/barback-0.14.1+4": | |
311 Var("bleeding_edge") + "/dart/pkg/barback" + Var("barback-0.14.1_rev"), | |
312 Var("dart_root") + "/third_party/pkg/source_maps-0.9.4": | |
313 Var("bleeding_edge") + "/dart/pkg/source_maps" + | |
314 Var("source_maps-0.9.4_rev"), | |
315 } | 300 } |
316 | 301 |
317 deps_os = { | 302 deps_os = { |
318 "android": { | 303 "android": { |
319 Var("dart_root") + "/third_party/android_tools": | 304 Var("dart_root") + "/third_party/android_tools": |
320 Var("chromium_git") + "/android_tools.git" + | 305 Var("chromium_git") + "/android_tools.git" + |
321 "@aaeda3d69df4b4352e3cac7c16bea7f16bd1ec12", | 306 "@aaeda3d69df4b4352e3cac7c16bea7f16bd1ec12", |
322 }, | 307 }, |
323 "win": { | 308 "win": { |
324 Var("dart_root") + "/third_party/cygwin": | 309 Var("dart_root") + "/third_party/cygwin": |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 "--bucket", | 364 "--bucket", |
380 "dart-dependencies", | 365 "dart-dependencies", |
381 "--recursive", | 366 "--recursive", |
382 "--auto_platform", | 367 "--auto_platform", |
383 "--extract", | 368 "--extract", |
384 "--directory", | 369 "--directory", |
385 Var('dart_root') + "/tools/sdks", | 370 Var('dart_root') + "/tools/sdks", |
386 ], | 371 ], |
387 }, | 372 }, |
388 ] | 373 ] |
OLD | NEW |