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 # Use this googlecode_url variable only if there is an internal mirror for it. | |
14 # If you do not know, use the full path while defining your new deps entry. | |
15 "googlecode_url": "http://%s.googlecode.com/svn", | |
16 | |
17 # We use mirrors of all github repos to guarantee reproducibility and | 13 # We use mirrors of all github repos to guarantee reproducibility and |
18 # consistency between what users see and what the bots see. | 14 # consistency between what users see and what the bots see. |
19 # We need the mirrors to not have 100+ bots pulling github constantly. | 15 # We need the mirrors to not have 100+ bots pulling github constantly. |
20 # We mirror our github repos on chromium git servers. | 16 # We mirror our github repos on chromium git servers. |
21 # DO NOT use this var if you don't see a mirror here: | 17 # DO NOT use this var if you don't see a mirror here: |
22 # https://chromium.googlesource.com/ | 18 # https://chromium.googlesource.com/ |
23 # named like: | 19 # named like: |
24 # external/github.com/dart-lang/NAME | 20 # external/github.com/dart-lang/NAME |
25 # It is ok to add a dependency directly on dart-lang (dart-lang only) | 21 # It is ok to add a dependency directly on dart-lang (dart-lang only) |
26 # github repo until the mirror has been created, but please do file a bug | 22 # github repo until the mirror has been created, but please do file a bug |
27 # against infra to make that happen. | 23 # against infra to make that happen. |
28 "github_mirror": | 24 "github_mirror": |
29 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 25 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", |
30 | 26 |
31 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
32 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", | 28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", |
33 "chromium_url": "http://src.chromium.org/svn", | |
34 "chromium_git": "https://chromium.googlesource.com", | 29 "chromium_git": "https://chromium.googlesource.com", |
35 | 30 |
36 # Revisions of /third_party/* dependencies. | 31 # Revisions of /third_party/* dependencies. |
37 "7zip_rev" : "@19997", | 32 "7zip_rev" : "@19997", |
38 "args_tag": "@0.13.0", | 33 "args_tag": "@0.13.0", |
39 "async_tag": "@1.4.0", | 34 "async_tag": "@1.4.0", |
40 "barback_tag" : "@0.15.2+7", | 35 "barback_tag" : "@0.15.2+7", |
41 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", | 36 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", |
42 "charcode_tag": "@1.1.0", | 37 "charcode_tag": "@1.1.0", |
43 "chrome_rev" : "@19997", | 38 "chrome_rev" : "@19997", |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 deps_os = { | 295 deps_os = { |
301 "android": { | 296 "android": { |
302 Var("dart_root") + "/third_party/android_tools": | 297 Var("dart_root") + "/third_party/android_tools": |
303 Var("chromium_git") + "/android_tools.git" + | 298 Var("chromium_git") + "/android_tools.git" + |
304 "@aaeda3d69df4b4352e3cac7c16bea7f16bd1ec12", | 299 "@aaeda3d69df4b4352e3cac7c16bea7f16bd1ec12", |
305 }, | 300 }, |
306 "win": { | 301 "win": { |
307 Var("dart_root") + "/third_party/cygwin": | 302 Var("dart_root") + "/third_party/cygwin": |
308 Var("chromium_git") + "/chromium/deps/cygwin.git" + | 303 Var("chromium_git") + "/chromium/deps/cygwin.git" + |
309 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", | 304 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", |
310 Var("dart_root") + "/third_party/drt_resources": | |
311 Var("chromium_url") + | |
312 "/trunk/src/webkit/tools/test_shell/resources@157099", | |
313 }, | 305 }, |
314 "unix": { | 306 "unix": { |
315 Var("dart_root") + "/third_party/clang": | 307 Var("dart_root") + "/third_party/clang": |
316 Var("third_party") + "/clang" + Var("clang_rev"), | 308 Var("third_party") + "/clang" + Var("clang_rev"), |
317 }, | 309 }, |
318 } | 310 } |
319 | 311 |
320 # TODO(iposva): Move the necessary tools so that hooks can be run | 312 # TODO(iposva): Move the necessary tools so that hooks can be run |
321 # without the runtime being available. | 313 # without the runtime being available. |
322 hooks = [ | 314 hooks = [ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "--no_resume", | 353 "--no_resume", |
362 "--bucket", | 354 "--bucket", |
363 "dart-dependencies", | 355 "dart-dependencies", |
364 "--recursive", | 356 "--recursive", |
365 "--auto_platform", | 357 "--auto_platform", |
366 "--extract", | 358 "--extract", |
367 "--directory", | 359 "--directory", |
368 Var('dart_root') + "/tools/sdks", | 360 Var('dart_root') + "/tools/sdks", |
369 ], | 361 ], |
370 }, | 362 }, |
| 363 { |
| 364 "name": "drt_resources", |
| 365 "pattern": ".", |
| 366 "action": [ |
| 367 "download_from_google_storage", |
| 368 "--no_auth", |
| 369 "--no_resume", |
| 370 "--bucket", |
| 371 "dart-dependencies", |
| 372 "--platform=win32", |
| 373 "--directory", |
| 374 Var('dart_root') + "/third_party/drt_resources", |
| 375 ], |
| 376 }, |
371 ] | 377 ] |
OLD | NEW |