| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": | 2 "webkit_trunk": |
| 3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "webkit_revision": "65604", | 4 "webkit_revision": "65604", |
| 5 "ffmpeg_revision": "56386", | 5 "ffmpeg_revision": "56386", |
| 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": "55944", | 10 "libvpx_revision": "55944", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 Var("ffmpeg_revision"), | 154 Var("ffmpeg_revision"), |
| 155 | 155 |
| 156 "src/third_party/libvpx/include": | 156 "src/third_party/libvpx/include": |
| 157 "/trunk/deps/third_party/libvpx/include@" + | 157 "/trunk/deps/third_party/libvpx/include@" + |
| 158 Var("libvpx_revision"), | 158 Var("libvpx_revision"), |
| 159 "src/third_party/libvpx/lib": | 159 "src/third_party/libvpx/lib": |
| 160 "/trunk/deps/third_party/libvpx/lib@" + | 160 "/trunk/deps/third_party/libvpx/lib@" + |
| 161 Var("libvpx_revision"), | 161 Var("libvpx_revision"), |
| 162 | 162 |
| 163 "src/third_party/ppapi": | 163 "src/third_party/ppapi": |
| 164 "http://ppapi.googlecode.com/svn/trunk@198", | 164 "http://ppapi.googlecode.com/svn/trunk@200", |
| 165 | 165 |
| 166 "src/third_party/libjingle/source": | 166 "src/third_party/libjingle/source": |
| 167 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + | 167 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + |
| 168 Var("libjingle_revision"), | 168 Var("libjingle_revision"), |
| 169 | 169 |
| 170 "src/third_party/speex": | 170 "src/third_party/speex": |
| 171 "/trunk/deps/third_party/speex@56515", | 171 "/trunk/deps/third_party/speex@56515", |
| 172 } | 172 } |
| 173 | 173 |
| 174 | 174 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 ] | 290 ] |
| 291 | 291 |
| 292 | 292 |
| 293 hooks = [ | 293 hooks = [ |
| 294 { | 294 { |
| 295 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 295 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 296 "pattern": ".", | 296 "pattern": ".", |
| 297 "action": ["python", "src/build/gyp_chromium"], | 297 "action": ["python", "src/build/gyp_chromium"], |
| 298 }, | 298 }, |
| 299 ] | 299 ] |
| OLD | NEW |