This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
DEPS
72 lines (68 loc) · 2.75 KB
/
DEPS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
vars = {
# The svn location to pull out dependencies from
"third_party": "http://dart.googlecode.com/svn/third_party",
# Revisions of /third_party/* dependencies.
"android_adb_rev" : "@36744",
"apache_ant_rev" : "@19997",
"apache_compress_rev" : "@19997",
"apache_http_rev" : "@37872",
"args4j_rev" : "@19997",
"commons-io_rev" : "@19997",
"commons-lang_rev" : "@33092",
"eclipse_rev" : "@38742",
"fest_rev" : "@19997",
"gson_rev" : "@36048",
"gsutil_rev" : "@33376",
"guava_rev" : "@19997",
"hamcrest_rev" : "@19997",
"json_rev" : "@19997",
"junit_rev" : "@19997",
"mockito_rev" : "@19997",
"snakeyaml_rev" : "@19997",
"websocket_rev" : "@35854",
"weberknecht_rev" : "@33599",
}
deps = {
"eclipse3/third_party/android_adb":
Var("third_party") + "/android_adb" + Var("android_adb_rev"),
"eclipse3/third_party/apache_ant":
Var("third_party") + "/apache_ant" + Var("apache_ant_rev"),
"eclipse3/third_party/apache_compress":
Var("third_party") + "/apache_compress" + Var("apache_compress_rev"),
"eclipse3/third_party/apache_http":
Var("third_party") + "/apache_http" + Var("apache_http_rev"),
"eclipse3/third_party/args4j":
Var("third_party") + "/args4j" + Var("args4j_rev"),
"eclipse3/third_party/commons-io":
Var("third_party") + "/commons-io" + Var("commons-io_rev"),
"eclipse3/third_party/commons-lang":
Var("third_party") + "/commons-lang" + Var("commons-lang_rev"),
"eclipse3/third_party/eclipse":
Var("third_party") + "/eclipse" + Var("eclipse_rev"),
"eclipse3/third_party/fest":
Var("third_party") + "/fest" + Var("fest_rev"),
"eclipse3/third_party/gson":
Var("third_party") + "/gson" + Var("gson_rev"),
"eclipse3/third_party/gsutil":
Var("third_party") + "/gsutil" + Var("gsutil_rev"),
"eclipse3/third_party/guava":
Var("third_party") + "/guava" + Var("guava_rev"),
"eclipse3/third_party/hamcrest":
Var("third_party") + "/hamcrest" + Var("hamcrest_rev"),
"eclipse3/third_party/json":
Var("third_party") + "/json" + Var("json_rev"),
"eclipse3/third_party/junit":
Var("third_party") + "/junit" + Var("junit_rev"),
"eclipse3/third_party/mockito":
Var("third_party") + "/mockito" + Var("mockito_rev"),
"eclipse3/third_party/snakeyaml":
Var("third_party") + "/snakeyaml" + Var("snakeyaml_rev"),
"eclipse3/third_party/websocket":
Var("third_party") + "/websocket" + Var("websocket_rev"),
"eclipse3/third_party/weberknecht":
Var("third_party") + "/weberknecht" + Var("weberknecht_rev"),
}
hooks = []