blob: a1b57b53fdc7a0f6c4d8d6d21d6a536ebddd76f9 [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",
phoglund@webrtc.orgc440d562012-04-17 08:49:10 +000025
26 # Used by tools/quality_tracking/dashboard and tools/python_charts.
27 "tools/third_party/google-visualization-python":
28 "http://google-visualization-python.googlecode.com/svn/trunk/@15",
kjellander@webrtc.orgde2a76f2012-03-27 15:57:30 +000029}
30
31hooks = [
32 {
33 # Update slave buildbot.tac to include WebRTC slave_utils import.
34 "pattern": ".",
35 "action": ["python", "tools/add_webrtc_slave_utils.py"],
36 },
37]
38