| 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": "58956", | 4 "webkit_revision": "58956", |
| 5 "ffmpeg_revision": "46128", | 5 "ffmpeg_revision": "46128", |
| 6 "skia_revision": "561", | 6 "skia_revision": "561", |
| 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": "2200", | 9 "nacl_revision": "2200", |
| 10 } | 10 } |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": | 134 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": |
| 135 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + | 135 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + |
| 136 Var("webkit_revision"), | 136 Var("webkit_revision"), |
| 137 | 137 |
| 138 "src/third_party/swig/Lib": | 138 "src/third_party/swig/Lib": |
| 139 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 139 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 140 | 140 |
| 141 "src/third_party/ffmpeg/source/patched-ffmpeg-mt": | 141 "src/third_party/ffmpeg/source/patched-ffmpeg-mt": |
| 142 "/trunk/deps/third_party/ffmpeg/patched-ffmpeg-mt@" + | 142 "/trunk/deps/third_party/ffmpeg/patched-ffmpeg-mt@" + |
| 143 Var("ffmpeg_revision"), | 143 Var("ffmpeg_revision"), |
| 144 |
| 145 "src/third_party/ppapi": |
| 146 "http://ppapi.googlecode.com/svn/trunk@5", |
| 144 } | 147 } |
| 145 | 148 |
| 146 | 149 |
| 147 deps_os = { | 150 deps_os = { |
| 148 "win": { | 151 "win": { |
| 149 "src/chrome/tools/test/reference_build/chrome": | 152 "src/chrome/tools/test/reference_build/chrome": |
| 150 "/trunk/deps/reference_builds/chrome@41984", | 153 "/trunk/deps/reference_builds/chrome@41984", |
| 151 | 154 |
| 152 "src/third_party/cygwin": | 155 "src/third_party/cygwin": |
| 153 "/trunk/deps/third_party/cygwin@11984", | 156 "/trunk/deps/third_party/cygwin@11984", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 "action": ["python", "src/build/gyp_chromium"], | 261 "action": ["python", "src/build/gyp_chromium"], |
| 259 }, | 262 }, |
| 260 { | 263 { |
| 261 # Workaround XCode dependecies problem. | 264 # Workaround XCode dependecies problem. |
| 262 # TODO(bradnelson): remove this when fixed. | 265 # TODO(bradnelson): remove this when fixed. |
| 263 "pattern": ".", | 266 "pattern": ".", |
| 264 "action": ["python", | 267 "action": ["python", |
| 265 "src/build/mac/clobber_generated_headers.py"], | 268 "src/build/mac/clobber_generated_headers.py"], |
| 266 }, | 269 }, |
| 267 ] | 270 ] |
| OLD | NEW |