| 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 28 matching lines...) Expand all Loading... |
| 39 "7bbb4b1d4cc55b5855c86e174fc09c5213e665c2", | 39 "7bbb4b1d4cc55b5855c86e174fc09c5213e665c2", |
| 40 "nacl_toolchain_pnacl_win_x86_32_hash": | 40 "nacl_toolchain_pnacl_win_x86_32_hash": |
| 41 "f12a43ce3156dc0e7958fdee112dd2025575cb28", | 41 "f12a43ce3156dc0e7958fdee112dd2025575cb28", |
| 42 "nacl_toolchain_win_x86_hash": | 42 "nacl_toolchain_win_x86_hash": |
| 43 "a65981a52a9e8efd06d45c7347e31acdfe2d8c92", | 43 "a65981a52a9e8efd06d45c7347e31acdfe2d8c92", |
| 44 "nacl_toolchain_win_x86_newlib_hash": | 44 "nacl_toolchain_win_x86_newlib_hash": |
| 45 "2a88bdecf2a53000bddc775ca632f732d3d9fe2b", | 45 "2a88bdecf2a53000bddc775ca632f732d3d9fe2b", |
| 46 "nacl_toolchain_revision": "9093", | 46 "nacl_toolchain_revision": "9093", |
| 47 "pnacl_toolchain_revision": "9117", | 47 "pnacl_toolchain_revision": "9117", |
| 48 | 48 |
| 49 "libjingle_revision": "157", | 49 "libjingle_revision": "158", |
| 50 "libphonenumber_revision": "456", | 50 "libphonenumber_revision": "456", |
| 51 "libvpx_revision": "134182", | 51 "libvpx_revision": "134182", |
| 52 "lss_revision": "11", | 52 "lss_revision": "11", |
| 53 | 53 |
| 54 # These two FFmpeg variables must be updated together. One is used for SVN | 54 # These two FFmpeg variables must be updated together. One is used for SVN |
| 55 # checkouts and the other for Git checkouts. | 55 # checkouts and the other for Git checkouts. |
| 56 "ffmpeg_revision": "142289", | 56 "ffmpeg_revision": "142289", |
| 57 "ffmpeg_hash": "23f177366e3bce3a628a7d3feedceed4e18dcc04", | 57 "ffmpeg_hash": "23f177366e3bce3a628a7d3feedceed4e18dcc04", |
| 58 | 58 |
| 59 "sfntly_revision": "134", | 59 "sfntly_revision": "134", |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 "pattern": ".", | 559 "pattern": ".", |
| 560 "action": ["python", "src/build/util/lastchange.py", | 560 "action": ["python", "src/build/util/lastchange.py", |
| 561 "-o", "src/build/util/LASTCHANGE"], | 561 "-o", "src/build/util/LASTCHANGE"], |
| 562 }, | 562 }, |
| 563 { | 563 { |
| 564 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 564 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 565 "pattern": ".", | 565 "pattern": ".", |
| 566 "action": ["python", "src/build/gyp_chromium"], | 566 "action": ["python", "src/build/gyp_chromium"], |
| 567 }, | 567 }, |
| 568 ] | 568 ] |
| OLD | NEW |