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