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 "gyp_rev": "@1752", | 20 "gyp_rev": "@1752", |
21 "co19_rev": "@801", | 21 "co19_rev": "@20c5a7306a7bcee037cc3988a84e5486c6e1a78e", |
22 "chromium_url": "http://src.chromium.org/svn", | 22 "chromium_url": "http://src.chromium.org/svn", |
23 "chromium_git": "https://chromium.googlesource.com", | 23 "chromium_git": "https://chromium.googlesource.com", |
24 | 24 |
25 # Revisions of /third_party/* dependencies. | 25 # Revisions of /third_party/* dependencies. |
26 "7zip_rev" : "@19997", | 26 "7zip_rev" : "@19997", |
27 "analyzer_cli_tag" : "@1.0.1", | 27 "analyzer_cli_tag" : "@1.0.1", |
28 "args_tag": "@0.13.0", | 28 "args_tag": "@0.13.0", |
29 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", | 29 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", |
30 "chrome_rev" : "@19997", | 30 "chrome_rev" : "@19997", |
31 "clang_rev" : "@28450", | 31 "clang_rev" : "@28450", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "barback-0.14.0_rev": "@36398", | 92 "barback-0.14.0_rev": "@36398", |
93 "barback-0.14.1_rev": "@38525", | 93 "barback-0.14.1_rev": "@38525", |
94 "source_maps-0.9.4_rev": "@38524", | 94 "source_maps-0.9.4_rev": "@38524", |
95 } | 95 } |
96 | 96 |
97 deps = { | 97 deps = { |
98 # Stuff needed for GYP to run. | 98 # Stuff needed for GYP to run. |
99 Var("dart_root") + "/third_party/gyp": | 99 Var("dart_root") + "/third_party/gyp": |
100 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 100 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
101 | 101 |
102 Var("dart_root") + "/tests/co19/src": ((Var("googlecode_url") % "co19") + | 102 Var("dart_root") + "/tests/co19/src": |
103 "/trunk/co19/tests/co19/src" + Var("co19_rev")), | 103 "https://github.com/dart-lang/co19.git" + Var("co19_rev"), |
104 | 104 |
105 Var("dart_root") + "/third_party/nss": | 105 Var("dart_root") + "/third_party/nss": |
106 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), | 106 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), |
107 | 107 |
108 Var("dart_root") + "/third_party/sqlite": | 108 Var("dart_root") + "/third_party/sqlite": |
109 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + | 109 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + |
110 Var("sqlite_rev"), | 110 Var("sqlite_rev"), |
111 | 111 |
112 Var("dart_root") + "/third_party/zlib": | 112 Var("dart_root") + "/third_party/zlib": |
113 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + | 113 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 '--no_auth', | 304 '--no_auth', |
305 '--no_resume', | 305 '--no_resume', |
306 '--bucket', | 306 '--bucket', |
307 'dart-dependencies', | 307 'dart-dependencies', |
308 '-d', | 308 '-d', |
309 '-r', | 309 '-r', |
310 Var('dart_root') + '/tools/testing/bin', | 310 Var('dart_root') + '/tools/testing/bin', |
311 ], | 311 ], |
312 }, | 312 }, |
313 ] | 313 ] |
OLD | NEW |