| 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 "689ef2a1b4b013b4cbfb42e0ff71eaaf5aba5c1d", | 39 "689ef2a1b4b013b4cbfb42e0ff71eaaf5aba5c1d", |
| 40 "nacl_toolchain_pnacl_win_x86_32_hash": | 40 "nacl_toolchain_pnacl_win_x86_32_hash": |
| 41 "906beb9ecbc6be9a8f456f45dabd715bae8db16a", | 41 "906beb9ecbc6be9a8f456f45dabd715bae8db16a", |
| 42 "nacl_toolchain_win_x86_hash": | 42 "nacl_toolchain_win_x86_hash": |
| 43 "9a854462e601338153bc65bfdc1171a87dc0bfe6", | 43 "9a854462e601338153bc65bfdc1171a87dc0bfe6", |
| 44 "nacl_toolchain_win_x86_newlib_hash": | 44 "nacl_toolchain_win_x86_newlib_hash": |
| 45 "c4dd3f8b65e309d242a3bfce89a15f580ef2e4f0", | 45 "c4dd3f8b65e309d242a3bfce89a15f580ef2e4f0", |
| 46 "nacl_toolchain_revision": "9170", | 46 "nacl_toolchain_revision": "9170", |
| 47 "pnacl_toolchain_revision": "9213", | 47 "pnacl_toolchain_revision": "9213", |
| 48 | 48 |
| 49 "libjingle_revision": "161", | 49 "libjingle_revision": "163", |
| 50 "libphonenumber_revision": "456", | 50 "libphonenumber_revision": "456", |
| 51 "libvpx_revision": "147803", | 51 "libvpx_revision": "147803", |
| 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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 "pattern": ".", | 567 "pattern": ".", |
| 568 "action": ["python", "src/build/util/lastchange.py", | 568 "action": ["python", "src/build/util/lastchange.py", |
| 569 "-o", "src/build/util/LASTCHANGE"], | 569 "-o", "src/build/util/LASTCHANGE"], |
| 570 }, | 570 }, |
| 571 { | 571 { |
| 572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 573 "pattern": ".", | 573 "pattern": ".", |
| 574 "action": ["python", "src/build/gyp_chromium"], | 574 "action": ["python", "src/build/gyp_chromium"], |
| 575 }, | 575 }, |
| 576 ] | 576 ] |
| OLD | NEW |