blob: 68dd43abfa665a40790e5662b399fd3ba0de7452 [file] [log] [blame]
kjellander@webrtc.orgde2a76f2012-03-27 15:57:30 +00001# Tools has its own dependencies, separate from the production code.
2# Use http rather than https; the latter can cause problems for users behind
3# proxies.
4
5vars = {
6 "chromium_trunk" : "http://src.chromium.org/svn/trunk",
7}
8
9deps = {
10 # Used by quality_tracking.
11 "tools/third_party/gaeunit":
12 "http://code.google.com/p/gaeunit.git@e16d5bd4",
13
14 # Used by quality_tracking.
15 "tools/third_party/oauth2":
16 "http://github.com/simplegeo/python-oauth2.git@a83f4a29",
17
18 # Chromium buildbot scripts needs to be at the same level as our scripts.
19 "tools/continuous_build/build":
20 Var("chromium_trunk") + "/tools/build",
21
22 # Chromium buildbot scripts needs their own depot_tools.
23 "tools/continuous_build/depot_tools":
24 Var("chromium_trunk") + "/tools/depot_tools",
25}
26
27hooks = [
28 {
29 # Update slave buildbot.tac to include WebRTC slave_utils import.
30 "pattern": ".",
31 "action": ["python", "tools/add_webrtc_slave_utils.py"],
32 },
33]
34