OLD | NEW |
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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "101144", | 8 "webkit_revision": "101144", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 | 239 |
240 "src/third_party/ffmpeg": | 240 "src/third_party/ffmpeg": |
241 "/trunk/deps/third_party/ffmpeg/source@" + | 241 "/trunk/deps/third_party/ffmpeg/source@" + |
242 Var("ffmpeg_revision"), | 242 Var("ffmpeg_revision"), |
243 | 243 |
244 "src/third_party/libjingle/source": | 244 "src/third_party/libjingle/source": |
245 (Var("googlecode_url") % "libjingle") + "/trunk@" + | 245 (Var("googlecode_url") % "libjingle") + "/trunk@" + |
246 Var("libjingle_revision"), | 246 Var("libjingle_revision"), |
247 | 247 |
248 "src/third_party/speex": | 248 "src/third_party/speex": |
249 "/trunk/deps/third_party/speex@83190", | 249 "/trunk/deps/third_party/speex@111570", |
250 | 250 |
251 "src/third_party/yasm/source/patched-yasm": | 251 "src/third_party/yasm/source/patched-yasm": |
252 "/trunk/deps/third_party/yasm/patched-yasm@73761", | 252 "/trunk/deps/third_party/yasm/patched-yasm@73761", |
253 | 253 |
254 "src/third_party/libjpeg_turbo": | 254 "src/third_party/libjpeg_turbo": |
255 "/trunk/deps/third_party/libjpeg_turbo@106486", | 255 "/trunk/deps/third_party/libjpeg_turbo@106486", |
256 | 256 |
257 "src/third_party/flac": | 257 "src/third_party/flac": |
258 "/trunk/deps/third_party/flac@96404", | 258 "/trunk/deps/third_party/flac@96404", |
259 | 259 |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 # which takes ~20s, but clang speeds up builds by more than 20s. | 439 # which takes ~20s, but clang speeds up builds by more than 20s. |
440 "pattern": ".", | 440 "pattern": ".", |
441 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 441 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
442 }, | 442 }, |
443 { | 443 { |
444 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 444 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
445 "pattern": ".", | 445 "pattern": ".", |
446 "action": ["python", "src/build/gyp_chromium"], | 446 "action": ["python", "src/build/gyp_chromium"], |
447 }, | 447 }, |
448 ] | 448 ] |
OLD | NEW |