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": "59762", | 4 "webkit_revision": "59762", |
5 "ffmpeg_revision": "46128", | 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": "2235", | 9 "nacl_revision": "2235", |
| 10 "libvpx_revision": "47701", |
10 } | 11 } |
11 | 12 |
12 deps = { | 13 deps = { |
13 "src/breakpad/src": | 14 "src/breakpad/src": |
14 "http://google-breakpad.googlecode.com/svn/trunk/src@568", | 15 "http://google-breakpad.googlecode.com/svn/trunk/src@568", |
15 | 16 |
16 "src/build/util/support": | 17 "src/build/util/support": |
17 "/trunk/deps/support@20411", | 18 "/trunk/deps/support@20411", |
18 | 19 |
19 "src/googleurl": | 20 "src/googleurl": |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + | 136 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + |
136 Var("webkit_revision"), | 137 Var("webkit_revision"), |
137 | 138 |
138 "src/third_party/swig/Lib": | 139 "src/third_party/swig/Lib": |
139 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 140 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
140 | 141 |
141 "src/third_party/ffmpeg/source/patched-ffmpeg-mt": | 142 "src/third_party/ffmpeg/source/patched-ffmpeg-mt": |
142 "/trunk/deps/third_party/ffmpeg/patched-ffmpeg-mt@" + | 143 "/trunk/deps/third_party/ffmpeg/patched-ffmpeg-mt@" + |
143 Var("ffmpeg_revision"), | 144 Var("ffmpeg_revision"), |
144 | 145 |
| 146 "src/third_party/libvpx": |
| 147 "/trunk/deps/third_party/libvpx@" + |
| 148 Var("libvpx_revision"), |
| 149 |
145 "src/third_party/ppapi": | 150 "src/third_party/ppapi": |
146 "http://ppapi.googlecode.com/svn/trunk@44", | 151 "http://ppapi.googlecode.com/svn/trunk@44", |
147 } | 152 } |
148 | 153 |
149 | 154 |
150 deps_os = { | 155 deps_os = { |
151 "win": { | 156 "win": { |
152 "src/chrome/tools/test/reference_build/chrome": | 157 "src/chrome/tools/test/reference_build/chrome": |
153 "/trunk/deps/reference_builds/chrome@41984", | 158 "/trunk/deps/reference_builds/chrome@41984", |
154 | 159 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 "action": ["python", "src/build/gyp_chromium"], | 266 "action": ["python", "src/build/gyp_chromium"], |
262 }, | 267 }, |
263 { | 268 { |
264 # Workaround XCode dependecies problem. | 269 # Workaround XCode dependecies problem. |
265 # TODO(bradnelson): remove this when fixed. | 270 # TODO(bradnelson): remove this when fixed. |
266 "pattern": ".", | 271 "pattern": ".", |
267 "action": ["python", | 272 "action": ["python", |
268 "src/build/mac/clobber_generated_headers.py"], | 273 "src/build/mac/clobber_generated_headers.py"], |
269 }, | 274 }, |
270 ] | 275 ] |
OLD | NEW |