blob: d961311cbf7d1927e848b0dc78ea2bd1a3a7bc26 [file] [log] [blame]
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +00001use_relative_paths = True
2
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +00003vars = {
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +00004 # Override root_dir in your .gclient's custom_vars to specify a custom root
5 # folder name.
6 "root_dir": "trunk",
andrew@webrtc.orgea5d0e52012-08-09 17:37:03 +00007 "extra_gyp_flag": "-Dextra_gyp_flag=0",
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +00008
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +00009 # Use this googlecode_url variable only if there is an internal mirror for it.
10 # If you do not know, use the full path while defining your new deps entry.
11 "googlecode_url": "http://%s.googlecode.com/svn",
12 "chromium_trunk" : "http://src.chromium.org/svn/trunk",
fischman@webrtc.org3d496fb2013-07-30 17:14:35 +000013 "chromium_revision": "214260",
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000014
kjellander@webrtc.org430464c2013-06-04 16:29:45 +000015 # A small subset of WebKit is needed for the Android Python test framework.
16 "webkit_trunk": "http://src.chromium.org/blink/trunk",
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000017}
18
19# NOTE: Prefer revision numbers to tags for svn deps. Use http rather than
20# https; the latter can cause problems for users behind proxies.
21deps = {
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000022 "../chromium_deps":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000023 File(Var("chromium_trunk") + "/src/DEPS@" + Var("chromium_revision")),
24
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000025 "build":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000026 Var("chromium_trunk") + "/src/build@" + Var("chromium_revision"),
27
andrew@webrtc.orgb9d20642012-09-19 23:08:50 +000028 # Needed by common.gypi.
29 "google_apis/build":
30 Var("chromium_trunk") + "/src/google_apis/build@" + Var("chromium_revision"),
31
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000032 "testing":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000033 Var("chromium_trunk") + "/src/testing@" + Var("chromium_revision"),
34
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000035 "testing/gmock":
36 From("chromium_deps", "src/testing/gmock"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000037
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000038 "testing/gtest":
39 From("chromium_deps", "src/testing/gtest"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000040
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000041 "third_party/expat":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000042 Var("chromium_trunk") + "/src/third_party/expat@" + Var("chromium_revision"),
43
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000044 "third_party/google-gflags/src":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000045 (Var("googlecode_url") % "google-gflags") + "/trunk/src@45",
46
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +000047 "third_party/icu/":
48 From("chromium_deps", "src/third_party/icu"),
49
50 "third_party/jsoncpp/":
51 Var("chromium_trunk") + "/src/third_party/jsoncpp@" + Var("chromium_revision"),
52
53 "third_party/jsoncpp/source":
54 "http://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp@248",
55
56 "third_party/junit/":
57 (Var("googlecode_url") % "webrtc") + "/deps/third_party/junit@3367",
58
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000059 "third_party/libjpeg":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000060 Var("chromium_trunk") + "/src/third_party/libjpeg@" + Var("chromium_revision"),
61
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000062 "third_party/libjpeg_turbo":
63 From("chromium_deps", "src/third_party/libjpeg_turbo"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000064
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +000065 "third_party/libsrtp/":
66 From("chromium_deps", "src/third_party/libsrtp"),
67
andrew@webrtc.orge6e344a2013-02-12 19:35:18 +000068 "third_party/libvpx":
fischman@webrtc.orge691b4f2013-07-25 21:22:41 +000069 Var("chromium_trunk") + "/deps/third_party/libvpx@212975",
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000070
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000071 "third_party/libyuv":
fbarchard@google.com2ef95132013-06-11 22:03:29 +000072 (Var("googlecode_url") % "libyuv") + "/trunk@723",
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000073
tina.legrand@webrtc.org1f8c02a2012-10-25 12:37:08 +000074 "third_party/opus":
tina.legrand@webrtc.orge86f43b2013-03-22 12:39:54 +000075 Var("chromium_trunk") + "/src/third_party/opus@185405",
tina.legrand@webrtc.org1f8c02a2012-10-25 12:37:08 +000076
77 "third_party/opus/src":
tina.legrand@webrtc.orge86f43b2013-03-22 12:39:54 +000078 Var("chromium_trunk") + "/deps/third_party/opus@185324",
tina.legrand@webrtc.org1f8c02a2012-10-25 12:37:08 +000079
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000080 "third_party/protobuf":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000081 Var("chromium_trunk") + "/src/third_party/protobuf@" + Var("chromium_revision"),
82
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +000083 "third_party/sqlite/":
84 Var("chromium_trunk") + "/src/third_party/sqlite@" + Var("chromium_revision"),
85
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000086 "third_party/yasm":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000087 Var("chromium_trunk") + "/src/third_party/yasm@" + Var("chromium_revision"),
88
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000089 "third_party/yasm/source/patched-yasm":
90 From("chromium_deps", "src/third_party/yasm/source/patched-yasm"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000091
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000092 "tools/clang":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000093 Var("chromium_trunk") + "/src/tools/clang@" + Var("chromium_revision"),
94
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +000095 "tools/gyp":
96 From("chromium_deps", "src/tools/gyp"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +000097
andrew@webrtc.org225f2b82013-05-20 21:12:58 +000098 "tools/protoc_wrapper":
99 Var("chromium_trunk") + "/src/tools/protoc_wrapper@" + Var("chromium_revision"),
100
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000101 "tools/python":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000102 Var("chromium_trunk") + "/src/tools/python@" + Var("chromium_revision"),
103
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000104 "tools/valgrind":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000105 Var("chromium_trunk") + "/src/tools/valgrind@" + Var("chromium_revision"),
106
107 # Needed by build/common.gypi.
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000108 "tools/win/supalink":
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000109 Var("chromium_trunk") + "/src/tools/win/supalink@" + Var("chromium_revision"),
110}
111
112deps_os = {
113 "win": {
114 # Use our own, stripped down, version of Cygwin (required by GYP).
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000115 "third_party/cygwin":
andrew@webrtc.org7b2e9192012-08-28 15:56:40 +0000116 (Var("googlecode_url") % "webrtc") + "/deps/third_party/cygwin@2672",
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000117
andrew@webrtc.org8cd18c52012-11-21 18:46:45 +0000118 "third_party/winsdk_samples/src":
119 (Var("googlecode_url") % "webrtc") + "/deps/third_party/winsdk_samples_v71@3145",
120
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000121 # Used by libjpeg-turbo.
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000122 "third_party/yasm/binaries":
123 From("chromium_deps", "src/third_party/yasm/binaries"),
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +0000124
125 # NSS, for SSLClientSocketNSS.
126 "third_party/nss":
127 From("chromium_deps", "src/third_party/nss"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000128 },
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +0000129
130 "mac": {
131 # NSS, for SSLClientSocketNSS.
132 "third_party/nss":
133 From("chromium_deps", "src/third_party/nss"),
134 },
135
136 "ios": {
137 # NSS, for SSLClientSocketNSS.
138 "third_party/nss":
139 From("chromium_deps", "src/third_party/nss"),
140 },
141
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000142 "unix": {
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000143 "third_party/gold":
144 From("chromium_deps", "src/third_party/gold"),
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +0000145
146 "third_party/openssl":
147 From("chromium_deps", "src/third_party/openssl"),
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000148 },
kjellander@webrtc.org18a21a02013-02-11 17:43:19 +0000149 "android": {
kjellander@webrtc.org6cfe1782013-06-18 07:14:33 +0000150 # Precompiled tools needed for Android test execution. Needed since we can't
151 # compile them from source in WebRTC since they depend on Chromium's base.
152 "tools/android":
yujie.mao@webrtc.org9f07ea42013-07-18 01:57:04 +0000153 (Var("googlecode_url") % "webrtc") + "/deps/tools/android@4258",
kjellander@webrtc.org6cfe1782013-06-18 07:14:33 +0000154
kjellander@webrtc.org2d7617a2013-06-19 09:10:49 +0000155 "tools/android-dummy-test":
156 (Var("googlecode_url") % "webrtc") + "/deps/tools/android-dummy-test@4244",
157
kjellander@webrtc.org18a21a02013-02-11 17:43:19 +0000158 "third_party/android_tools":
159 From("chromium_deps", "src/third_party/android_tools"),
160
161 "third_party/android_testrunner":
162 Var("chromium_trunk") + "/src/third_party/android_testrunner@" + Var("chromium_revision"),
kjellander@webrtc.org430464c2013-06-04 16:29:45 +0000163
164 "third_party/WebKit/Tools/Scripts":
165 Var("webkit_trunk") + "/Tools/Scripts@151677",
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +0000166
167 "third_party/openssl":
168 From("chromium_deps", "src/third_party/openssl"),
kjellander@webrtc.org18a21a02013-02-11 17:43:19 +0000169 },
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000170}
171
172hooks = [
173 {
andrew@webrtc.org14b43be2012-10-22 18:19:23 +0000174 # Create a supplement.gypi file under trunk/webrtc. This file will be picked
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000175 # up by gyp and used to enable the standalone build.
176 "pattern": ".",
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000177 "action": ["python", Var("root_dir") + "/tools/create_supplement_gypi.py",
andrew@webrtc.org14b43be2012-10-22 18:19:23 +0000178 Var("root_dir") + "/webrtc/supplement.gypi"],
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000179 },
180 {
181 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
182 # zero seconds to run. If something changed, it downloads a prebuilt clang.
183 "pattern": ".",
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000184 "action": ["python", Var("root_dir") + "/tools/clang/scripts/update.py",
185 "--mac-only"],
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000186 },
187 {
stefan@webrtc.orgc3115832012-08-17 06:57:58 +0000188 # Update the cygwin mount on Windows.
189 # This is necessary to get the correct mapping between e.g. /bin and the
190 # cygwin path on Windows. Without it we can't run bash scripts in actions.
191 # Ideally this should be solved in "pylib/gyp/msvs_emulation.py".
192 "pattern": ".",
193 "action": ["python", Var("root_dir") + "/build/win/setup_cygwin_mount.py",
194 "--win-only"],
195 },
196 {
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000197 # Download test resources, i.e. video and audio files. If the latest
198 # version is already downloaded, this takes zero seconds to run.
199 # If a newer version or no current download exists, it will download
200 # the resources and extract them.
201 "pattern": ".",
henrike@webrtc.org34773d92013-07-08 14:55:23 +0000202 "action": ["python", Var("root_dir") + "/webrtc/tools/update_resources.py"],
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000203 },
204 {
205 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
206 "pattern": ".",
andrew@webrtc.org9a3f83f2012-08-07 06:03:22 +0000207 "action": ["python", Var("root_dir") + "/build/gyp_chromium",
henrike@webrtc.org8d27a1c2013-07-23 18:15:11 +0000208 "--depth=" + Var("root_dir"), Var("root_dir") + "/all.gyp",
andrew@webrtc.orgea5d0e52012-08-09 17:37:03 +0000209 Var("extra_gyp_flag")],
andrew@webrtc.org4ce52bb2012-07-31 21:54:13 +0000210 },
211]
212