blob: eee861a57331b2b3b670b7e95f4c816f5e7f0d9d [file] [log] [blame]
andrew@webrtc.org29f91592011-09-16 05:26:16 +00001vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn",
andrew@webrtc.org29f91592011-09-16 05:26:16 +00005 "chromium_trunk" : "http://src.chromium.org/svn/trunk",
6 "chromium_revision": "98568",
wu@webrtc.orgcb99f782011-09-19 21:59:33 +00007 "libjingle_revision": "85",
andrew@webrtc.org29f91592011-09-16 05:26:16 +00008}
9
10# NOTE: Prefer revision numbers to tags.
11deps = {
12 "trunk/build":
13 Var("chromium_trunk") + "/src/build@" + Var("chromium_revision"),
14
15 "trunk/testing":
16 Var("chromium_trunk") + "/src/testing@" + Var("chromium_revision"),
17
18 "trunk/testing/gtest":
19 (Var("googlecode_url") % "googletest") + "/trunk@573",
20
21 "trunk/testing/gmock":
22 (Var("googlecode_url") % "googlemock") + "/trunk@386",
23
24 "trunk/tools/gyp":
25 (Var("googlecode_url") % "gyp") + "/trunk@1012",
26
27 "trunk/third_party/protobuf/":
28 Var("chromium_trunk") + "/src/third_party/protobuf@" + Var("chromium_revision"),
29
30 # TODO(andrew): return to the webm git repository when possible.
31 "trunk/third_party/libvpx/source/libvpx":
32 Var("chromium_trunk") + "/deps/third_party/libvpx/source/libvpx@98040",
33 #"git://review.webmproject.org/libvpx.git@v0.9.7-p1",
34
35 "trunk/third_party/libjpeg_turbo/":
36 Var("chromium_trunk") + "/deps/third_party/libjpeg_turbo@95800",
37
38 "trunk/third_party/libjpeg/":
39 Var("chromium_trunk") + "/src/third_party/libjpeg@" + Var("chromium_revision"),
40
41 "trunk/third_party/yasm/":
42 Var("chromium_trunk") + "/src/third_party/yasm@" + Var("chromium_revision"),
43
44 "trunk/third_party/expat/":
45 Var("chromium_trunk") + "/src/third_party/expat@" + Var("chromium_revision"),
46
47 "trunk/third_party/libjingle/":
48 Var("chromium_trunk") + "/src/third_party/libjingle@" + Var("chromium_revision"),
49
50 "trunk/third_party/google-gflags/src":
51 (Var("googlecode_url") % "google-gflags") + "/trunk/src@45",
52
53 "trunk/third_party/libjingle/source":
54 (Var("googlecode_url") % "libjingle") + "/trunk@" + Var("libjingle_revision"),
55
56 "trunk/third_party/yasm/source/patched-yasm":
57 Var("chromium_trunk") + "/deps/third_party/yasm/patched-yasm@73761",
58 # Used by libjpeg-turbo
59 "trunk/third_party/yasm/binaries":
60 Var("chromium_trunk") + "/deps/third_party/yasm/binaries@74228",
61
62 "trunk/third_party/jsoncpp/":
63 "http://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp@246",
64}
65
66deps_os = {
67 "win": {
68 "trunk/third_party/cygwin/":
69 Var("chromium_trunk") + "/deps/third_party/cygwin@66844",
70 }
71}
72
73hooks = [
74 {
75 # Create a supplement.gypi file under trunk/. This file will be picked up
76 # by gyp and we use it to set Chromium related variables (inside_chromium_build)
77 # to 0 and enable the standalone build.
78 "pattern": ".",
79 "action": ["python", "trunk/tools/create_supplement_gypi.py", "trunk/src/supplement.gypi"],
80 },
81 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
82 {
83 "pattern": ".",
84 "action": ["python", "trunk/build/gyp_chromium", "--depth=trunk", "trunk/webrtc.gyp"],
85 },
86]
87