OLD | NEW |
1 vars = { | 1 vars = { |
2 "googlecode_url": "http://%s.googlecode.com/svn", | 2 "googlecode_url": "http://%s.googlecode.com/svn", |
3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 3 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 4 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
5 "webkit_revision": "67973", | 5 "webkit_revision": "67973", |
6 "ffmpeg_revision": "58574", | 6 "ffmpeg_revision": "58574", |
7 "skia_revision": "593", | 7 "skia_revision": "593", |
8 "chromium_git": "http://src.chromium.org/git", | 8 "chromium_git": "http://src.chromium.org/git", |
9 "swig_revision": "40423", | 9 "swig_revision": "40423", |
10 "nacl_revision": "3186", | 10 "nacl_revision": "3186", |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 | 168 |
169 "src/third_party/ppapi": | 169 "src/third_party/ppapi": |
170 (Var("googlecode_url") % "ppapi") + "/trunk@256", | 170 (Var("googlecode_url") % "ppapi") + "/trunk@256", |
171 | 171 |
172 "src/third_party/libjingle/source": | 172 "src/third_party/libjingle/source": |
173 (Var("googlecode_url") % "libjingle") + "/branches/nextsnap@" + | 173 (Var("googlecode_url") % "libjingle") + "/branches/nextsnap@" + |
174 Var("libjingle_revision"), | 174 Var("libjingle_revision"), |
175 | 175 |
176 "src/third_party/speex": | 176 "src/third_party/speex": |
177 "/trunk/deps/third_party/speex@56515", | 177 "/trunk/deps/third_party/speex@56515", |
178 | |
179 "src/third_party/libsrtp/src": | |
180 "/trunk/deps/third_party/libsrtp@60080", | |
181 } | 178 } |
182 | 179 |
183 | 180 |
184 deps_os = { | 181 deps_os = { |
185 "win": { | 182 "win": { |
186 "src/chrome/tools/test/reference_build/chrome": | 183 "src/chrome/tools/test/reference_build/chrome": |
187 "/trunk/deps/reference_builds/chrome@41984", | 184 "/trunk/deps/reference_builds/chrome@41984", |
188 | 185 |
189 "src/third_party/cygwin": | 186 "src/third_party/cygwin": |
190 "/trunk/deps/third_party/cygwin@11984", | 187 "/trunk/deps/third_party/cygwin@11984", |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 ] | 296 ] |
300 | 297 |
301 | 298 |
302 hooks = [ | 299 hooks = [ |
303 { | 300 { |
304 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 301 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
305 "pattern": ".", | 302 "pattern": ".", |
306 "action": ["python", "src/build/gyp_chromium"], | 303 "action": ["python", "src/build/gyp_chromium"], |
307 }, | 304 }, |
308 ] | 305 ] |
OLD | NEW |