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. | 13 # The svn location for pulling pinned revisions of bleeding edge dependencies. |
14 "bleeding_edge": "http://dart.googlecode.com/svn/branches/bleeding_edge", | 14 "bleeding_edge": "http://dart.googlecode.com/svn/branches/bleeding_edge", |
15 | 15 |
16 # Use this googlecode_url variable only if there is an internal mirror for it. | 16 # 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. | 17 # If you do not know, use the full path while defining your new deps entry. |
18 "googlecode_url": "http://%s.googlecode.com/svn", | 18 "googlecode_url": "http://%s.googlecode.com/svn", |
19 | 19 |
20 "dart_github": "https://github.com/dart-lang/%s.git", | 20 "dart_github": "https://github.com/dart-lang/%s.git", |
21 | 21 |
22 "gyp_rev": "@1752", | 22 "gyp_rev": "@1752", |
23 "co19_rev": "@f95f109fea67127a220958794ef5200a63cb454c", | 23 "co19_rev": "@801", |
24 "chromium_url": "http://src.chromium.org/svn", | 24 "chromium_url": "http://src.chromium.org/svn", |
25 "chromium_git": "https://chromium.googlesource.com", | 25 "chromium_git": "https://chromium.googlesource.com", |
26 | 26 |
27 # Revisions of /third_party/* dependencies. | 27 # Revisions of /third_party/* dependencies. |
28 "7zip_rev" : "@19997", | 28 "7zip_rev" : "@19997", |
29 "analyzer_cli_tag" : "@1.0.1", | 29 "analyzer_cli_tag" : "@1.0.1", |
30 "args_tag": "@0.13.0", | 30 "args_tag": "@0.13.0", |
31 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", | 31 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", |
32 "charcode_tag": "@1.1.0", | 32 "charcode_tag": "@1.1.0", |
33 "chrome_rev" : "@19997", | 33 "chrome_rev" : "@19997", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 "barback-0.14.0_rev": "@36398", | 98 "barback-0.14.0_rev": "@36398", |
99 "barback-0.14.1_rev": "@38525", | 99 "barback-0.14.1_rev": "@38525", |
100 "source_maps-0.9.4_rev": "@38524", | 100 "source_maps-0.9.4_rev": "@38524", |
101 } | 101 } |
102 | 102 |
103 deps = { | 103 deps = { |
104 # Stuff needed for GYP to run. | 104 # Stuff needed for GYP to run. |
105 Var("dart_root") + "/third_party/gyp": | 105 Var("dart_root") + "/third_party/gyp": |
106 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 106 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
107 | 107 |
108 Var("dart_root") + "/tests/co19/src": | 108 Var("dart_root") + "/tests/co19/src": ((Var("googlecode_url") % "co19") + |
109 "https://github.com/dart-lang/co19.git" + Var("co19_rev"), | 109 "/trunk/co19/tests/co19/src" + Var("co19_rev")), |
110 | 110 |
111 Var("dart_root") + "/third_party/nss": | 111 Var("dart_root") + "/third_party/nss": |
112 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), | 112 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), |
113 | 113 |
114 Var("dart_root") + "/third_party/sqlite": | 114 Var("dart_root") + "/third_party/sqlite": |
115 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + | 115 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + |
116 Var("sqlite_rev"), | 116 Var("sqlite_rev"), |
117 | 117 |
118 Var("dart_root") + "/third_party/zlib": | 118 Var("dart_root") + "/third_party/zlib": |
119 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 119 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 '--no_auth', | 319 '--no_auth', |
320 '--no_resume', | 320 '--no_resume', |
321 '--bucket', | 321 '--bucket', |
322 'dart-dependencies', | 322 'dart-dependencies', |
323 '-d', | 323 '-d', |
324 '-r', | 324 '-r', |
325 Var('dart_root') + '/tools/testing/bin', | 325 Var('dart_root') + '/tools/testing/bin', |
326 ], | 326 ], |
327 }, | 327 }, |
328 ] | 328 ] |
OLD | NEW |