| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "googlecode_url": "http://%s.googlecode.com/svn", | 2 "googlecode_url": "http://%s.googlecode.com/svn", |
| 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 5 "webkit_revision": "67622", | 5 "webkit_revision": "67622", |
| 6 "ffmpeg_revision": "58574", | 6 "ffmpeg_revision": "58574", |
| 7 "skia_revision": "593", | 7 "skia_revision": "593", |
| 8 "chromium_git": "http://src.chromium.org/git", | 8 "chromium_git": "http://src.chromium.org/git", |
| 9 "swig_revision": "40423", | 9 "swig_revision": "40423", |
| 10 "nacl_revision": "3186", | 10 "nacl_revision": "3186", |
| 11 "libvpx_revision": "59445", | 11 "libvpx_revision": "59445", |
| 12 "libjingle_revision": "29", | 12 "libjingle_revision": "29", |
| 13 } | 13 } |
| 14 | 14 |
| 15 deps = { | 15 deps = { |
| 16 "src/breakpad/src": | 16 "src/breakpad/src": |
| 17 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@657", | 17 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@692", |
| 18 | 18 |
| 19 "src/build/util/support": | 19 "src/build/util/support": |
| 20 "/trunk/deps/support@20411", | 20 "/trunk/deps/support@20411", |
| 21 | 21 |
| 22 "src/googleurl": | 22 "src/googleurl": |
| 23 (Var("googlecode_url") % "google-url") + "/trunk@145", | 23 (Var("googlecode_url") % "google-url") + "/trunk@145", |
| 24 | 24 |
| 25 "src/seccompsandbox": | 25 "src/seccompsandbox": |
| 26 "http://seccompsandbox.googlecode.com/svn/trunk@119", | 26 "http://seccompsandbox.googlecode.com/svn/trunk@119", |
| 27 | 27 |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 ] | 296 ] |
| 297 | 297 |
| 298 | 298 |
| 299 hooks = [ | 299 hooks = [ |
| 300 { | 300 { |
| 301 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 301 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 302 "pattern": ".", | 302 "pattern": ".", |
| 303 "action": ["python", "src/build/gyp_chromium"], | 303 "action": ["python", "src/build/gyp_chromium"], |
| 304 }, | 304 }, |
| 305 ] | 305 ] |
| OLD | NEW |