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 14 matching lines...) Expand all Loading... |
25 # https://chromium.googlesource.com/ | 25 # https://chromium.googlesource.com/ |
26 # named like: | 26 # named like: |
27 # external/github.com/dart-lang/NAME | 27 # external/github.com/dart-lang/NAME |
28 # It is ok to add a dependency directly on dart-lang (dart-lang only) | 28 # It is ok to add a dependency directly on dart-lang (dart-lang only) |
29 # github repo until the mirror has been created, but please do file a bug | 29 # github repo until the mirror has been created, but please do file a bug |
30 # against infra to make that happen. | 30 # against infra to make that happen. |
31 "github_mirror": | 31 "github_mirror": |
32 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 32 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", |
33 | 33 |
34 "gyp_rev": "@1752", | 34 "gyp_rev": "@1752", |
35 "co19_rev": "@20c5a7306a7bcee037cc3988a84e5486c6e1a78e", | 35 "co19_rev": "@f95f109fea67127a220958794ef5200a63cb454c", |
36 "chromium_url": "http://src.chromium.org/svn", | 36 "chromium_url": "http://src.chromium.org/svn", |
37 "chromium_git": "https://chromium.googlesource.com", | 37 "chromium_git": "https://chromium.googlesource.com", |
38 | 38 |
39 # Revisions of /third_party/* dependencies. | 39 # Revisions of /third_party/* dependencies. |
40 "7zip_rev" : "@19997", | 40 "7zip_rev" : "@19997", |
41 "analyzer_cli_tag" : "@1.0.1", | 41 "analyzer_cli_tag" : "@1.0.1", |
42 "args_tag": "@0.13.0", | 42 "args_tag": "@0.13.0", |
43 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", | 43 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", |
44 "charcode_tag": "@1.1.0", | 44 "charcode_tag": "@1.1.0", |
45 "chrome_rev" : "@19997", | 45 "chrome_rev" : "@19997", |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 '--no_auth', | 331 '--no_auth', |
332 '--no_resume', | 332 '--no_resume', |
333 '--bucket', | 333 '--bucket', |
334 'dart-dependencies', | 334 'dart-dependencies', |
335 '-d', | 335 '-d', |
336 '-r', | 336 '-r', |
337 Var('dart_root') + '/tools/testing/bin', | 337 Var('dart_root') + '/tools/testing/bin', |
338 ], | 338 ], |
339 }, | 339 }, |
340 ] | 340 ] |
OLD | NEW |