| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 2 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 3 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 3 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 4 "webkit_revision": "66624", | 4 "webkit_revision": "66624", |
| 5 "ffmpeg_revision": "58320", | 5 "ffmpeg_revision": "58320", |
| 6 "skia_revision": "593", | 6 "skia_revision": "593", |
| 7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
| 8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
| 9 "nacl_revision": "3005", | 9 "nacl_revision": "3005", |
| 10 "libvpx_revision": "58318", | 10 "libvpx_revision": "58318", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 Var("ffmpeg_revision"), | 159 Var("ffmpeg_revision"), |
| 160 | 160 |
| 161 "src/third_party/libvpx/include": | 161 "src/third_party/libvpx/include": |
| 162 "/trunk/deps/third_party/libvpx/include@" + | 162 "/trunk/deps/third_party/libvpx/include@" + |
| 163 Var("libvpx_revision"), | 163 Var("libvpx_revision"), |
| 164 "src/third_party/libvpx/lib": | 164 "src/third_party/libvpx/lib": |
| 165 "/trunk/deps/third_party/libvpx/lib@" + | 165 "/trunk/deps/third_party/libvpx/lib@" + |
| 166 Var("libvpx_revision"), | 166 Var("libvpx_revision"), |
| 167 | 167 |
| 168 "src/third_party/ppapi": | 168 "src/third_party/ppapi": |
| 169 "http://ppapi.googlecode.com/svn/trunk@226", | 169 "http://ppapi.googlecode.com/svn/trunk@233", |
| 170 | 170 |
| 171 "src/third_party/libjingle/source": | 171 "src/third_party/libjingle/source": |
| 172 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + | 172 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + |
| 173 Var("libjingle_revision"), | 173 Var("libjingle_revision"), |
| 174 | 174 |
| 175 "src/third_party/speex": | 175 "src/third_party/speex": |
| 176 "/trunk/deps/third_party/speex@56515", | 176 "/trunk/deps/third_party/speex@56515", |
| 177 } | 177 } |
| 178 | 178 |
| 179 | 179 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 ] | 295 ] |
| 296 | 296 |
| 297 | 297 |
| 298 hooks = [ | 298 hooks = [ |
| 299 { | 299 { |
| 300 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 300 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 301 "pattern": ".", | 301 "pattern": ".", |
| 302 "action": ["python", "src/build/gyp_chromium"], | 302 "action": ["python", "src/build/gyp_chromium"], |
| 303 }, | 303 }, |
| 304 ] | 304 ] |
| OLD | NEW |