Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: DEPS

Issue 4341005: move full libvpx tree into deps to include license and gyp... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/libvpx/libvpx.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 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. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "71224", 7 "webkit_revision": "71224",
8 "skia_revision": "621", 8 "skia_revision": "621",
9 "chromium_git": "http://git.chromium.org/git", 9 "chromium_git": "http://git.chromium.org/git",
10 "swig_revision": "40423", 10 "swig_revision": "40423",
11 "nacl_revision": "3365", 11 "nacl_revision": "3365",
12 "libjingle_revision": "33", 12 "libjingle_revision": "33",
13 "libvpx_revision": "63575", 13 "libvpx_revision": "64931",
14 "ffmpeg_revision": "64326", 14 "ffmpeg_revision": "64326",
15 } 15 }
16 16
17 deps = { 17 deps = {
18 "src/breakpad/src": 18 "src/breakpad/src":
19 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@700", 19 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@700",
20 20
21 "src/build/util/support": 21 "src/build/util/support":
22 "/trunk/deps/support@20411", 22 "/trunk/deps/support@20411",
23 23
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": 156 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers":
157 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + 157 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" +
158 Var("webkit_revision"), 158 Var("webkit_revision"),
159 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": 159 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources":
160 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + 160 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" +
161 Var("webkit_revision"), 161 Var("webkit_revision"),
162 162
163 "src/third_party/swig/Lib": 163 "src/third_party/swig/Lib":
164 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), 164 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"),
165 165
166 "src/third_party/libvpx":
167 "/trunk/deps/third_party/libvpx@" +
168 Var("libvpx_revision"),
169
166 "src/third_party/ffmpeg": 170 "src/third_party/ffmpeg":
167 "/trunk/deps/third_party/ffmpeg/source@" + 171 "/trunk/deps/third_party/ffmpeg/source@" +
168 Var("ffmpeg_revision"), 172 Var("ffmpeg_revision"),
169 173
170 "src/third_party/libvpx/include":
171 "/trunk/deps/third_party/libvpx/include@" +
172 Var("libvpx_revision"),
173 "src/third_party/libvpx/lib":
174 "/trunk/deps/third_party/libvpx/lib@" +
175 Var("libvpx_revision"),
176
177 "src/third_party/libjingle/source": 174 "src/third_party/libjingle/source":
178 (Var("googlecode_url") % "libjingle") + "/trunk@" + 175 (Var("googlecode_url") % "libjingle") + "/trunk@" +
179 Var("libjingle_revision"), 176 Var("libjingle_revision"),
180 177
181 "src/third_party/speex": 178 "src/third_party/speex":
182 "/trunk/deps/third_party/speex@56515", 179 "/trunk/deps/third_party/speex@56515",
183 180
184 "src/third_party/libsrtp/src": 181 "src/third_party/libsrtp/src":
185 "/trunk/deps/third_party/libsrtp@60080", 182 "/trunk/deps/third_party/libsrtp@60080",
186 } 183 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 ] 306 ]
310 307
311 308
312 hooks = [ 309 hooks = [
313 { 310 {
314 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 311 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
315 "pattern": ".", 312 "pattern": ".",
316 "action": ["python", "src/build/gyp_chromium"], 313 "action": ["python", "src/build/gyp_chromium"],
317 }, 314 },
318 ] 315 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/libvpx/libvpx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698