| 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": "61996", | 4 "webkit_revision": "61996", |
| 5 "ffmpeg_revision": "49485", | 5 "ffmpeg_revision": "49485", |
| 6 "skia_revision": "583", | 6 "skia_revision": "583", |
| 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": "2555", | 9 "nacl_revision": "2555", |
| 10 "libvpx_revision": "47941", | 10 "libvpx_revision": "47941", |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "v8", | 280 "v8", |
| 281 ] | 281 ] |
| 282 | 282 |
| 283 | 283 |
| 284 hooks = [ | 284 hooks = [ |
| 285 { | 285 { |
| 286 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 286 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 287 "pattern": ".", | 287 "pattern": ".", |
| 288 "action": ["python", "src/build/gyp_chromium"], | 288 "action": ["python", "src/build/gyp_chromium"], |
| 289 }, | 289 }, |
| 290 { | |
| 291 # Workaround XCode dependecies problem. | |
| 292 # TODO(bradnelson): remove this when fixed. | |
| 293 "pattern": ".", | |
| 294 "action": ["python", | |
| 295 "src/build/mac/clobber_generated_headers.py"], | |
| 296 }, | |
| 297 ] | 290 ] |
| 298 | 291 |
| OLD | NEW |