| 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": "103610", | 8 "webkit_revision": "103610", |
| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 "src/rlz": | 360 "src/rlz": |
| 361 (Var("googlecode_url") % "rlz") + "/trunk@49", | 361 (Var("googlecode_url") % "rlz") + "/trunk@49", |
| 362 | 362 |
| 363 # Dependencies used by libjpeg-turbo | 363 # Dependencies used by libjpeg-turbo |
| 364 "src/third_party/yasm/binaries": | 364 "src/third_party/yasm/binaries": |
| 365 "/trunk/deps/third_party/yasm/binaries@74228", | 365 "/trunk/deps/third_party/yasm/binaries@74228", |
| 366 | 366 |
| 367 # Binary level profile guided optimizations. This points to the | 367 # Binary level profile guided optimizations. This points to the |
| 368 # latest release binaries for the toolchain. | 368 # latest release binaries for the toolchain. |
| 369 "src/third_party/syzygy/binaries": | 369 "src/third_party/syzygy/binaries": |
| 370 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@543", | 370 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@596", |
| 371 | 371 |
| 372 # Binaries for nacl sdk. | 372 # Binaries for nacl sdk. |
| 373 "src/third_party/nacl_sdk_binaries": | 373 "src/third_party/nacl_sdk_binaries": |
| 374 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 374 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 375 }, | 375 }, |
| 376 "mac": { | 376 "mac": { |
| 377 "src/chrome/tools/test/reference_build/chrome_mac": | 377 "src/chrome/tools/test/reference_build/chrome_mac": |
| 378 "/trunk/deps/reference_builds/chrome_mac@89574", | 378 "/trunk/deps/reference_builds/chrome_mac@89574", |
| 379 | 379 |
| 380 "src/third_party/GTM": | 380 "src/third_party/GTM": |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 # which takes ~20s, but clang speeds up builds by more than 20s. | 480 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 481 "pattern": ".", | 481 "pattern": ".", |
| 482 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 482 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 483 }, | 483 }, |
| 484 { | 484 { |
| 485 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 485 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 486 "pattern": ".", | 486 "pattern": ".", |
| 487 "action": ["python", "src/build/gyp_chromium"], | 487 "action": ["python", "src/build/gyp_chromium"], |
| 488 }, | 488 }, |
| 489 ] | 489 ] |
| OLD | NEW |