| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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": "148611", | 56 "ffmpeg_revision": "148611", |
| 57 "ffmpeg_hash": "4287c0271f399b98eb6851e6e650098f26b8c3c2", | 57 "ffmpeg_hash": "4287c0271f399b98eb6851e6e650098f26b8c3c2", |
| 58 | 58 |
| 59 "sfntly_revision": "134", | 59 "sfntly_revision": "134", |
| 60 "skia_revision": "4834", | 60 "skia_revision": "4843", |
| 61 # Three lines of non-changing comments so that | 61 # Three lines of non-changing comments so that |
| 62 # the commit queue can handle CLs rolling Skia | 62 # the commit queue can handle CLs rolling Skia |
| 63 # and V8 without interference from each other. | 63 # and V8 without interference from each other. |
| 64 "v8_revision": "12227", | 64 "v8_revision": "12227", |
| 65 "webrtc_revision": "2529", | 65 "webrtc_revision": "2529", |
| 66 "jsoncpp_revision": "248", | 66 "jsoncpp_revision": "248", |
| 67 "nss_revision": "145873", | 67 "nss_revision": "145873", |
| 68 } | 68 } |
| 69 | 69 |
| 70 deps = { | 70 deps = { |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 "pattern": ".", | 571 "pattern": ".", |
| 572 "action": ["python", "src/build/util/lastchange.py", | 572 "action": ["python", "src/build/util/lastchange.py", |
| 573 "-o", "src/build/util/LASTCHANGE"], | 573 "-o", "src/build/util/LASTCHANGE"], |
| 574 }, | 574 }, |
| 575 { | 575 { |
| 576 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 576 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 577 "pattern": ".", | 577 "pattern": ".", |
| 578 "action": ["python", "src/build/gyp_chromium"], | 578 "action": ["python", "src/build/gyp_chromium"], |
| 579 }, | 579 }, |
| 580 ] | 580 ] |
| OLD | NEW |