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": "60568", | 4 "webkit_revision": "60568", |
5 "ffmpeg_revision": "48686", | 5 "ffmpeg_revision": "48686", |
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", |
| 11 "libjingle_revision": "21", |
11 } | 12 } |
12 | 13 |
13 deps = { | 14 deps = { |
14 "src/breakpad/src": | 15 "src/breakpad/src": |
15 "http://google-breakpad.googlecode.com/svn/trunk/src@604", | 16 "http://google-breakpad.googlecode.com/svn/trunk/src@604", |
16 | 17 |
17 "src/build/util/support": | 18 "src/build/util/support": |
18 "/trunk/deps/support@20411", | 19 "/trunk/deps/support@20411", |
19 | 20 |
20 "src/googleurl": | 21 "src/googleurl": |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 146 |
146 "src/third_party/libvpx/include": | 147 "src/third_party/libvpx/include": |
147 "/trunk/deps/third_party/libvpx/include@" + | 148 "/trunk/deps/third_party/libvpx/include@" + |
148 Var("libvpx_revision"), | 149 Var("libvpx_revision"), |
149 "src/third_party/libvpx/lib": | 150 "src/third_party/libvpx/lib": |
150 "/trunk/deps/third_party/libvpx/lib@" + | 151 "/trunk/deps/third_party/libvpx/lib@" + |
151 Var("libvpx_revision"), | 152 Var("libvpx_revision"), |
152 | 153 |
153 "src/third_party/ppapi": | 154 "src/third_party/ppapi": |
154 "http://ppapi.googlecode.com/svn/trunk@52", | 155 "http://ppapi.googlecode.com/svn/trunk@52", |
| 156 |
| 157 "src/third_party/libjingle/source": |
| 158 "http://libjingle.googlecode.com/svn/branches/nextsnap@" + |
| 159 Var("libjingle_revision"), |
155 } | 160 } |
156 | 161 |
157 | 162 |
158 deps_os = { | 163 deps_os = { |
159 "win": { | 164 "win": { |
160 "src/chrome/tools/test/reference_build/chrome": | 165 "src/chrome/tools/test/reference_build/chrome": |
161 "/trunk/deps/reference_builds/chrome@41984", | 166 "/trunk/deps/reference_builds/chrome@41984", |
162 | 167 |
163 "src/third_party/cygwin": | 168 "src/third_party/cygwin": |
164 "/trunk/deps/third_party/cygwin@11984", | 169 "/trunk/deps/third_party/cygwin@11984", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 }, | 279 }, |
275 { | 280 { |
276 # Workaround XCode dependecies problem. | 281 # Workaround XCode dependecies problem. |
277 # TODO(bradnelson): remove this when fixed. | 282 # TODO(bradnelson): remove this when fixed. |
278 "pattern": ".", | 283 "pattern": ".", |
279 "action": ["python", | 284 "action": ["python", |
280 "src/build/mac/clobber_generated_headers.py"], | 285 "src/build/mac/clobber_generated_headers.py"], |
281 }, | 286 }, |
282 ] | 287 ] |
283 | 288 |
OLD | NEW |