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": "101316", | 8 "webkit_revision": "101316", |
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 (Var("googlecode_url") % "libjingle") + "/trunk@" + | 258 (Var("googlecode_url") % "libjingle") + "/trunk@" + |
259 Var("libjingle_revision"), | 259 Var("libjingle_revision"), |
260 | 260 |
261 "src/third_party/speex": | 261 "src/third_party/speex": |
262 "/trunk/deps/third_party/speex@111570", | 262 "/trunk/deps/third_party/speex@111570", |
263 | 263 |
264 "src/third_party/yasm/source/patched-yasm": | 264 "src/third_party/yasm/source/patched-yasm": |
265 "/trunk/deps/third_party/yasm/patched-yasm@73761", | 265 "/trunk/deps/third_party/yasm/patched-yasm@73761", |
266 | 266 |
267 "src/third_party/libjpeg_turbo": | 267 "src/third_party/libjpeg_turbo": |
268 "/trunk/deps/third_party/libjpeg_turbo@106486", | 268 "/trunk/deps/third_party/libjpeg_turbo@111873", |
269 | 269 |
270 "src/third_party/flac": | 270 "src/third_party/flac": |
271 "/trunk/deps/third_party/flac@96404", | 271 "/trunk/deps/third_party/flac@96404", |
272 | 272 |
273 "src/third_party/pyftpdlib/src": | 273 "src/third_party/pyftpdlib/src": |
274 (Var("googlecode_url") % "pyftpdlib") + "/trunk@888", | 274 (Var("googlecode_url") % "pyftpdlib") + "/trunk@888", |
275 | 275 |
276 # Needed to support nacl browser test jig. | 276 # Needed to support nacl browser test jig. |
277 "src/third_party/pylib": | 277 "src/third_party/pylib": |
278 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 278 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 # which takes ~20s, but clang speeds up builds by more than 20s. | 465 # which takes ~20s, but clang speeds up builds by more than 20s. |
466 "pattern": ".", | 466 "pattern": ".", |
467 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 467 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
468 }, | 468 }, |
469 { | 469 { |
470 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 470 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
471 "pattern": ".", | 471 "pattern": ".", |
472 "action": ["python", "src/build/gyp_chromium"], | 472 "action": ["python", "src/build/gyp_chromium"], |
473 }, | 473 }, |
474 ] | 474 ] |
OLD | NEW |