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": "59831", | 4 "webkit_revision": "59831", |
5 "ffmpeg_revision": "47712", | 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 "libvpx_revision": "47701", |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 | 223 |
224 "src/third_party/xdg-utils": | 224 "src/third_party/xdg-utils": |
225 "/trunk/deps/third_party/xdg-utils@29103", | 225 "/trunk/deps/third_party/xdg-utils@29103", |
226 | 226 |
227 # TODO(ajwong): Move this into the OS-independent block. | 227 # TODO(ajwong): Move this into the OS-independent block. |
228 "src/third_party/yasm/source/patched-yasm": | 228 "src/third_party/yasm/source/patched-yasm": |
229 "/trunk/deps/third_party/yasm/patched-yasm@29937", | 229 "/trunk/deps/third_party/yasm/patched-yasm@29937", |
230 | 230 |
231 "src/third_party/swig/linux": | 231 "src/third_party/swig/linux": |
232 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 232 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
| 233 |
| 234 "src/third_party/libunwind": |
| 235 "/trunk/deps/third_party/libunwind@47716", |
233 }, | 236 }, |
234 } | 237 } |
235 | 238 |
236 | 239 |
237 include_rules = [ | 240 include_rules = [ |
238 # Everybody can use some things. | 241 # Everybody can use some things. |
239 "+base", | 242 "+base", |
240 "+build", | 243 "+build", |
241 "+ipc", | 244 "+ipc", |
242 | 245 |
(...skipping 26 matching lines...) Expand all Loading... |
269 "action": ["python", "src/build/gyp_chromium"], | 272 "action": ["python", "src/build/gyp_chromium"], |
270 }, | 273 }, |
271 { | 274 { |
272 # Workaround XCode dependecies problem. | 275 # Workaround XCode dependecies problem. |
273 # TODO(bradnelson): remove this when fixed. | 276 # TODO(bradnelson): remove this when fixed. |
274 "pattern": ".", | 277 "pattern": ".", |
275 "action": ["python", | 278 "action": ["python", |
276 "src/build/mac/clobber_generated_headers.py"], | 279 "src/build/mac/clobber_generated_headers.py"], |
277 }, | 280 }, |
278 ] | 281 ] |
OLD | NEW |