OLD | NEW |
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
7 "webkit_revision": "75633", | 7 "webkit_revision": "75633", |
8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
10 "nacl_revision": "4085", | 10 "nacl_revision": "4085", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 (Var("googlecode_url") % "libjingle") + "/trunk@" + | 175 (Var("googlecode_url") % "libjingle") + "/trunk@" + |
176 Var("libjingle_revision"), | 176 Var("libjingle_revision"), |
177 | 177 |
178 "src/third_party/speex": | 178 "src/third_party/speex": |
179 "/trunk/deps/third_party/speex@70427", | 179 "/trunk/deps/third_party/speex@70427", |
180 | 180 |
181 "src/third_party/libsrtp/src": | 181 "src/third_party/libsrtp/src": |
182 "/trunk/deps/third_party/libsrtp@60080", | 182 "/trunk/deps/third_party/libsrtp@60080", |
183 | 183 |
184 "src/third_party/yasm/source/patched-yasm": | 184 "src/third_party/yasm/source/patched-yasm": |
185 "/trunk/deps/third_party/yasm/patched-yasm@50870", | 185 "/trunk/deps/third_party/yasm/patched-yasm@71296", |
186 | 186 |
187 "src/third_party/libjpeg_turbo": | 187 "src/third_party/libjpeg_turbo": |
188 "/trunk/deps/third_party/libjpeg_turbo@66929", | 188 "/trunk/deps/third_party/libjpeg_turbo@66929", |
189 } | 189 } |
190 | 190 |
191 | 191 |
192 deps_os = { | 192 deps_os = { |
193 "win": { | 193 "win": { |
194 "src/chrome/tools/test/reference_build/chrome": | 194 "src/chrome/tools/test/reference_build/chrome": |
195 "/trunk/deps/reference_builds/chrome@70122", | 195 "/trunk/deps/reference_builds/chrome@70122", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 ] | 308 ] |
309 | 309 |
310 | 310 |
311 hooks = [ | 311 hooks = [ |
312 { | 312 { |
313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
314 "pattern": ".", | 314 "pattern": ".", |
315 "action": ["python", "src/build/gyp_chromium"], | 315 "action": ["python", "src/build/gyp_chromium"], |
316 }, | 316 }, |
317 ] | 317 ] |
OLD | NEW |