| 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": "60528", | 4 "webkit_revision": "60528", |
| 5 "ffmpeg_revision": "48686", | 5 "ffmpeg_revision": "47712", |
| 6 "skia_revision": "562", | 6 "skia_revision": "562", |
| 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": "2407", | 9 "nacl_revision": "2407", |
| 10 "libvpx_revision": "47941", | 10 "libvpx_revision": "47941", |
| 11 } | 11 } |
| 12 | 12 |
| 13 deps = { | 13 deps = { |
| 14 "src/breakpad/src": | 14 "src/breakpad/src": |
| 15 "http://google-breakpad.googlecode.com/svn/trunk/src@604", | 15 "http://google-breakpad.googlecode.com/svn/trunk/src@604", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": | 132 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": |
| 133 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + | 133 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + |
| 134 Var("webkit_revision"), | 134 Var("webkit_revision"), |
| 135 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": | 135 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": |
| 136 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + | 136 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + |
| 137 Var("webkit_revision"), | 137 Var("webkit_revision"), |
| 138 | 138 |
| 139 "src/third_party/swig/Lib": | 139 "src/third_party/swig/Lib": |
| 140 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 140 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 141 | 141 |
| 142 "src/third_party/ffmpeg": | 142 "src/third_party/ffmpeg/source/patched-ffmpeg-mt": |
| 143 "/trunk/deps/third_party/ffmpeg/source@" + | 143 "/trunk/deps/third_party/ffmpeg/patched-ffmpeg-mt@" + |
| 144 Var("ffmpeg_revision"), | 144 Var("ffmpeg_revision"), |
| 145 | 145 |
| 146 "src/third_party/libvpx/include": | 146 "src/third_party/libvpx/include": |
| 147 "/trunk/deps/third_party/libvpx/include@" + | 147 "/trunk/deps/third_party/libvpx/include@" + |
| 148 Var("libvpx_revision"), | 148 Var("libvpx_revision"), |
| 149 "src/third_party/libvpx/lib": | 149 "src/third_party/libvpx/lib": |
| 150 "/trunk/deps/third_party/libvpx/lib@" + | 150 "/trunk/deps/third_party/libvpx/lib@" + |
| 151 Var("libvpx_revision"), | 151 Var("libvpx_revision"), |
| 152 | 152 |
| 153 "src/third_party/ppapi": | 153 "src/third_party/ppapi": |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 }, | 274 }, |
| 275 { | 275 { |
| 276 # Workaround XCode dependecies problem. | 276 # Workaround XCode dependecies problem. |
| 277 # TODO(bradnelson): remove this when fixed. | 277 # TODO(bradnelson): remove this when fixed. |
| 278 "pattern": ".", | 278 "pattern": ".", |
| 279 "action": ["python", | 279 "action": ["python", |
| 280 "src/build/mac/clobber_generated_headers.py"], | 280 "src/build/mac/clobber_generated_headers.py"], |
| 281 }, | 281 }, |
| 282 ] | 282 ] |
| 283 | 283 |
| OLD | NEW |