| 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": "60893", | 4 "webkit_revision": "60893", |
| 5 "ffmpeg_revision": "49210", | 5 "ffmpeg_revision": "49210", |
| 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", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 Var("ffmpeg_revision"), | 148 Var("ffmpeg_revision"), |
| 149 | 149 |
| 150 "src/third_party/libvpx/include": | 150 "src/third_party/libvpx/include": |
| 151 "/trunk/deps/third_party/libvpx/include@" + | 151 "/trunk/deps/third_party/libvpx/include@" + |
| 152 Var("libvpx_revision"), | 152 Var("libvpx_revision"), |
| 153 "src/third_party/libvpx/lib": | 153 "src/third_party/libvpx/lib": |
| 154 "/trunk/deps/third_party/libvpx/lib@" + | 154 "/trunk/deps/third_party/libvpx/lib@" + |
| 155 Var("libvpx_revision"), | 155 Var("libvpx_revision"), |
| 156 | 156 |
| 157 "src/third_party/ppapi": | 157 "src/third_party/ppapi": |
| 158 "http://ppapi.googlecode.com/svn/trunk@52", | 158 "http://ppapi.googlecode.com/svn/trunk@54", |
| 159 | 159 |
| 160 "src/third_party/libjingle/source": | 160 "src/third_party/libjingle/source": |
| 161 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + | 161 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + |
| 162 Var("libjingle_revision"), | 162 Var("libjingle_revision"), |
| 163 } | 163 } |
| 164 | 164 |
| 165 | 165 |
| 166 deps_os = { | 166 deps_os = { |
| 167 "win": { | 167 "win": { |
| 168 "src/chrome/tools/test/reference_build/chrome": | 168 "src/chrome/tools/test/reference_build/chrome": |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 }, | 282 }, |
| 283 { | 283 { |
| 284 # Workaround XCode dependecies problem. | 284 # Workaround XCode dependecies problem. |
| 285 # TODO(bradnelson): remove this when fixed. | 285 # TODO(bradnelson): remove this when fixed. |
| 286 "pattern": ".", | 286 "pattern": ".", |
| 287 "action": ["python", | 287 "action": ["python", |
| 288 "src/build/mac/clobber_generated_headers.py"], | 288 "src/build/mac/clobber_generated_headers.py"], |
| 289 }, | 289 }, |
| 290 ] | 290 ] |
| 291 | 291 |
| OLD | NEW |