| OLD | NEW |
| 1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
| 2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
| 3 | 3 |
| 4 vars = { | 4 vars = { |
| 5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
| 7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
| 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 376 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
| 377 Var("nacl_tools_revision")), | 377 Var("nacl_tools_revision")), |
| 378 | 378 |
| 379 # Dependencies used by libjpeg-turbo | 379 # Dependencies used by libjpeg-turbo |
| 380 "src/third_party/yasm/binaries": | 380 "src/third_party/yasm/binaries": |
| 381 "/trunk/deps/third_party/yasm/binaries@154708", | 381 "/trunk/deps/third_party/yasm/binaries@154708", |
| 382 | 382 |
| 383 # Binary level profile guided optimizations. This points to the | 383 # Binary level profile guided optimizations. This points to the |
| 384 # latest release binaries for the toolchain. | 384 # latest release binaries for the toolchain. |
| 385 "src/third_party/syzygy/binaries": | 385 "src/third_party/syzygy/binaries": |
| 386 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1083", | 386 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1194", |
| 387 | 387 |
| 388 # Binaries for nacl sdk. | 388 # Binaries for nacl sdk. |
| 389 "src/third_party/nacl_sdk_binaries": | 389 "src/third_party/nacl_sdk_binaries": |
| 390 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 390 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 391 }, | 391 }, |
| 392 "ios": { | 392 "ios": { |
| 393 "src/third_party/GTM": | 393 "src/third_party/GTM": |
| 394 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 394 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
| 395 Var("gtm_revision"), | 395 Var("gtm_revision"), |
| 396 | 396 |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 630 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 631 "pattern": ".", | 631 "pattern": ".", |
| 632 "action": ["python", "src/build/gyp_chromium"], | 632 "action": ["python", "src/build/gyp_chromium"], |
| 633 }, | 633 }, |
| 634 { | 634 { |
| 635 # Check for landmines (reasons to clobber the build). | 635 # Check for landmines (reasons to clobber the build). |
| 636 "pattern": ".", | 636 "pattern": ".", |
| 637 "action": ["python", "src/build/landmines.py"], | 637 "action": ["python", "src/build/landmines.py"], |
| 638 }, | 638 }, |
| 639 ] | 639 ] |
| OLD | NEW |