| 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": "66666", | 4 "webkit_revision": "66666", |
| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 247 |
| 248 "src/chrome/installer/mac/third_party/xz/xz": | 248 "src/chrome/installer/mac/third_party/xz/xz": |
| 249 "/trunk/deps/third_party/xz@50504", | 249 "/trunk/deps/third_party/xz@50504", |
| 250 }, | 250 }, |
| 251 "unix": { | 251 "unix": { |
| 252 # Linux, really. | 252 # Linux, really. |
| 253 "src/chrome/tools/test/reference_build/chrome_linux": | 253 "src/chrome/tools/test/reference_build/chrome_linux": |
| 254 "/trunk/deps/reference_builds/chrome_linux@41515", | 254 "/trunk/deps/reference_builds/chrome_linux@41515", |
| 255 | 255 |
| 256 "src/third_party/xdg-utils": | 256 "src/third_party/xdg-utils": |
| 257 "/trunk/deps/third_party/xdg-utils@29103", | 257 "/trunk/deps/third_party/xdg-utils@58316", |
| 258 | 258 |
| 259 # TODO(ajwong): Move this into the OS-independent block. | 259 # TODO(ajwong): Move this into the OS-independent block. |
| 260 "src/third_party/yasm/source/patched-yasm": | 260 "src/third_party/yasm/source/patched-yasm": |
| 261 "/trunk/deps/third_party/yasm/patched-yasm@50870", | 261 "/trunk/deps/third_party/yasm/patched-yasm@50870", |
| 262 | 262 |
| 263 "src/third_party/swig/linux": | 263 "src/third_party/swig/linux": |
| 264 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 264 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
| 265 }, | 265 }, |
| 266 } | 266 } |
| 267 | 267 |
| (...skipping 27 matching lines...) Expand all 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 |