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": "59900", | 4 "webkit_revision": "59900", |
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", | |
236 }, | 233 }, |
237 } | 234 } |
238 | 235 |
239 | 236 |
240 include_rules = [ | 237 include_rules = [ |
241 # Everybody can use some things. | 238 # Everybody can use some things. |
242 "+base", | 239 "+base", |
243 "+build", | 240 "+build", |
244 "+ipc", | 241 "+ipc", |
245 | 242 |
(...skipping 26 matching lines...) Expand all Loading... |
272 "action": ["python", "src/build/gyp_chromium"], | 269 "action": ["python", "src/build/gyp_chromium"], |
273 }, | 270 }, |
274 { | 271 { |
275 # Workaround XCode dependecies problem. | 272 # Workaround XCode dependecies problem. |
276 # TODO(bradnelson): remove this when fixed. | 273 # TODO(bradnelson): remove this when fixed. |
277 "pattern": ".", | 274 "pattern": ".", |
278 "action": ["python", | 275 "action": ["python", |
279 "src/build/mac/clobber_generated_headers.py"], | 276 "src/build/mac/clobber_generated_headers.py"], |
280 }, | 277 }, |
281 ] | 278 ] |
OLD | NEW |