| 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": "107217", | 8 "webkit_revision": "107217", |
| 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 25 matching lines...) Expand all Loading... |
| 36 "408f8c946802a0acd6f9004b73fce74ca60ac1db", | 36 "408f8c946802a0acd6f9004b73fce74ca60ac1db", |
| 37 "nacl_toolchain_revision": "7712", | 37 "nacl_toolchain_revision": "7712", |
| 38 "pnacl_toolchain_revision": "7700", | 38 "pnacl_toolchain_revision": "7700", |
| 39 | 39 |
| 40 "libjingle_revision": "114", | 40 "libjingle_revision": "114", |
| 41 "libphonenumber_revision": "425", | 41 "libphonenumber_revision": "425", |
| 42 "libvpx_revision": "119942", | 42 "libvpx_revision": "119942", |
| 43 "lss_revision": "9", | 43 "lss_revision": "9", |
| 44 "ffmpeg_revision": "120865", | 44 "ffmpeg_revision": "120865", |
| 45 "sfntly_revision": "118", | 45 "sfntly_revision": "118", |
| 46 "skia_revision": "3138", | 46 "skia_revision": "3147", |
| 47 # Three lines of non-changing comments so that | 47 # Three lines of non-changing comments so that |
| 48 # the commit queue can handle CLs rolling Skia | 48 # the commit queue can handle CLs rolling Skia |
| 49 # and V8 without interference from each other. | 49 # and V8 without interference from each other. |
| 50 "v8_revision": "10665", | 50 "v8_revision": "10665", |
| 51 "webrtc_revision": "1538", | 51 "webrtc_revision": "1538", |
| 52 "jsoncpp_revision": "248", | 52 "jsoncpp_revision": "248", |
| 53 "nss_revision": "117974", | 53 "nss_revision": "117974", |
| 54 } | 54 } |
| 55 | 55 |
| 56 deps = { | 56 deps = { |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 "pattern": ".", | 506 "pattern": ".", |
| 507 "action": ["python", "src/build/util/lastchange.py", | 507 "action": ["python", "src/build/util/lastchange.py", |
| 508 "-o", "src/build/util/LASTCHANGE"], | 508 "-o", "src/build/util/LASTCHANGE"], |
| 509 }, | 509 }, |
| 510 { | 510 { |
| 511 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 511 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 512 "pattern": ".", | 512 "pattern": ".", |
| 513 "action": ["python", "src/build/gyp_chromium"], | 513 "action": ["python", "src/build/gyp_chromium"], |
| 514 }, | 514 }, |
| 515 ] | 515 ] |
| OLD | NEW |