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

Side by Side Diff: DEPS

Issue 4365002: Revert 64923 - pull in full libvpx tree from deps to include license... (Closed) Base URL: svn://svn.chromium.org/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 | no next file » | 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",
(...skipping 145 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
170 "src/third_party/ffmpeg": 166 "src/third_party/ffmpeg":
171 "/trunk/deps/third_party/ffmpeg/source@" + 167 "/trunk/deps/third_party/ffmpeg/source@" +
172 Var("ffmpeg_revision"), 168 Var("ffmpeg_revision"),
173 169
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
174 "src/third_party/libjingle/source": 177 "src/third_party/libjingle/source":
175 (Var("googlecode_url") % "libjingle") + "/trunk@" + 178 (Var("googlecode_url") % "libjingle") + "/trunk@" +
176 Var("libjingle_revision"), 179 Var("libjingle_revision"),
177 180
178 "src/third_party/speex": 181 "src/third_party/speex":
179 "/trunk/deps/third_party/speex@56515", 182 "/trunk/deps/third_party/speex@56515",
180 183
181 "src/third_party/libsrtp/src": 184 "src/third_party/libsrtp/src":
182 "/trunk/deps/third_party/libsrtp@60080", 185 "/trunk/deps/third_party/libsrtp@60080",
183 } 186 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 ] 309 ]
307 310
308 311
309 hooks = [ 312 hooks = [
310 { 313 {
311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 314 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
312 "pattern": ".", 315 "pattern": ".",
313 "action": ["python", "src/build/gyp_chromium"], 316 "action": ["python", "src/build/gyp_chromium"],
314 }, 317 },
315 ] 318 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698