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 "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": "95381", | 7 "webkit_revision": "95381", |
8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
10 "nacl_revision": "6708", | 10 "nacl_revision": "6708", |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 "/trunk/deps/third_party/nss@101569", | 317 "/trunk/deps/third_party/nss@101569", |
318 | 318 |
319 "src/third_party/swig/win": | 319 "src/third_party/swig/win": |
320 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), | 320 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), |
321 | 321 |
322 "src/third_party/mingw-w64/mingw/bin": | 322 "src/third_party/mingw-w64/mingw/bin": |
323 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 323 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
324 Var("nacl_tools_revision")), | 324 Var("nacl_tools_revision")), |
325 | 325 |
326 "src/rlz": | 326 "src/rlz": |
327 (Var("googlecode_url") % "rlz") + "/trunk@47", | 327 (Var("googlecode_url") % "rlz") + "/trunk@48", |
328 | 328 |
329 # Dependencies used by libjpeg-turbo | 329 # Dependencies used by libjpeg-turbo |
330 "src/third_party/yasm/binaries": | 330 "src/third_party/yasm/binaries": |
331 "/trunk/deps/third_party/yasm/binaries@74228", | 331 "/trunk/deps/third_party/yasm/binaries@74228", |
332 | 332 |
333 # Binary level profile guided optimizations. This points to the | 333 # Binary level profile guided optimizations. This points to the |
334 # latest release binaries for the toolchain. | 334 # latest release binaries for the toolchain. |
335 "src/third_party/syzygy/binaries": | 335 "src/third_party/syzygy/binaries": |
336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@427", | 336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@427", |
337 }, | 337 }, |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 # which takes ~20s, but clang speeds up builds by more than 20s. | 434 # which takes ~20s, but clang speeds up builds by more than 20s. |
435 "pattern": ".", | 435 "pattern": ".", |
436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
437 }, | 437 }, |
438 { | 438 { |
439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
440 "pattern": ".", | 440 "pattern": ".", |
441 "action": ["python", "src/build/gyp_chromium"], | 441 "action": ["python", "src/build/gyp_chromium"], |
442 }, | 442 }, |
443 ] | 443 ] |
OLD | NEW |