OLD | NEW |
---|---|
1 deps = { | 1 deps = { |
2 "build": | 2 "build": |
3 "https://chromium.googlesource.com/chromium/tools/build.git", | 3 "https://chromium.googlesource.com/chromium/tools/build.git", |
4 | 4 |
5 "depot_tools": | 5 "depot_tools": |
6 "https://chromium.googlesource.com/chromium/tools/depot_tools.git", | 6 "https://chromium.googlesource.com/chromium/tools/depot_tools.git", |
7 | 7 |
8 ## external deps | 8 ## external deps |
9 # v0.8.0 | 9 # v1.11.6 |
10 "infra/infra/ext/argcomplete": | 10 "infra/bootstrap/virtualenv": |
11 ("https://chromium.googlesource.com/infra/third_party/argcomplete.git" | 11 ("https://github.com/pypa/virtualenv.git" |
12 "@a88dcaae3132003ae123d39a2cd9924113b8f985"), | 12 "@93cfa83481a1cb934eb14c946d33aef94c21bcb0"), |
13 | |
14 # v1.5 (v2 requires more dependencies) | |
15 "infra/infra/ext/dateutil": | |
16 ("https://chromium.googlesource.com/infra/third_party/dateutil.git" | |
17 "@731ee1ce8456361eba2c619e90989f6db45625b9"), | |
18 | |
19 # master at 2014-05-03 9:27-4 | |
20 "infra/infra/ext/httplib2": | |
21 ("https://chromium.googlesource.com/infra/third_party/httplib2.git" | |
22 "@7d1b88a3cf34774242bf4c0578c09c0092bb05d8"), | |
23 | |
24 # master at 2014-06-25 15:56-7 | |
25 "infra/infra/ext/oauth2client": | |
26 ("https://chromium.googlesource.com/infra/third_party/oauth2client.git" | |
27 "@1a3a99f11369806d7c517350df0b95ec50c317dd"), | |
28 | |
29 # master at 2014-06-02 12:44+0 | |
30 "infra/infra/ext/pytz": | |
31 ("https://chromium.googlesource.com/infra/third_party/pytz.git" | |
32 "@056207cdda4a8f01f7f0bd924e89d0df434c7547"), | |
33 | |
34 # v2.3.0 | |
35 "infra/infra/ext/requests": | |
36 ("https://chromium.googlesource.com/infra/third_party/requests.git" | |
37 "@6366d3dd190a9e58ca582955cddf7e2ac5f32dcc"), | |
38 } | 13 } |
39 | 14 |
40 hooks = [ | 15 hooks = [ |
41 { | 16 { |
42 "pattern": ".", | 17 "pattern": ".", |
43 "action": [ | 18 "action": [ |
44 "python", "-u", "infra/run.py", | 19 "python", "./infra/bootstrap/bootstrap.py", "--deps_file", |
agable
2014/07/10 17:12:55
Despite being pre-setup (obviously), this could st
iannucci
2014/07/11 02:14:44
I added the '-u' back, but the path.to.module synt
| |
20 "infra/bootstrap/deps.pst", "infra/ENV" | |
21 ], | |
22 }, | |
23 { | |
24 "pattern": ".", | |
25 "action": [ | |
26 "./infra/ENV/bin/python", "-u", "infra/run.py", | |
45 "infra.tools.bootstrap.get_appengine", "--dest=..", | 27 "infra.tools.bootstrap.get_appengine", "--dest=..", |
agable
2014/07/10 17:12:55
I dislike the fact that there's now both "infra/bo
iannucci
2014/07/11 02:14:44
Done.
| |
46 ], | 28 ], |
47 }, | 29 }, |
48 ] | 30 ] |
49 | 31 |
50 recursion = 1 | 32 recursion = 1 |
OLD | NEW |