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": "76088", | 7 "webkit_revision": "76088", |
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": "4139", | 10 "nacl_revision": "4139", |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 "/trunk/deps/third_party/nss@61580", | 218 "/trunk/deps/third_party/nss@61580", |
219 | 219 |
220 "src/third_party/swig/win": | 220 "src/third_party/swig/win": |
221 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), | 221 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"), |
222 | 222 |
223 "src/third_party/mingw-w64/mingw/bin": | 223 "src/third_party/mingw-w64/mingw/bin": |
224 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 224 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
225 Var("nacl_revision")), | 225 Var("nacl_revision")), |
226 | 226 |
227 "src/rlz": | 227 "src/rlz": |
228 (Var("googlecode_url") % "rlz") + "/trunk@32", | 228 (Var("googlecode_url") % "rlz") + "/trunk@33", |
229 | 229 |
230 # Dependencies used by libjpeg-turbo | 230 # Dependencies used by libjpeg-turbo |
231 "src/third_party/yasm/binaries": | 231 "src/third_party/yasm/binaries": |
232 "/trunk/deps/third_party/yasm/binaries@66803", | 232 "/trunk/deps/third_party/yasm/binaries@66803", |
233 }, | 233 }, |
234 "mac": { | 234 "mac": { |
235 "src/chrome/tools/test/reference_build/chrome_mac": | 235 "src/chrome/tools/test/reference_build/chrome_mac": |
236 "/trunk/deps/reference_builds/chrome_mac@71120", | 236 "/trunk/deps/reference_builds/chrome_mac@71120", |
237 | 237 |
238 "src/third_party/GTM": | 238 "src/third_party/GTM": |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 ] | 303 ] |
304 | 304 |
305 | 305 |
306 hooks = [ | 306 hooks = [ |
307 { | 307 { |
308 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 308 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
309 "pattern": ".", | 309 "pattern": ".", |
310 "action": ["python", "src/build/gyp_chromium"], | 310 "action": ["python", "src/build/gyp_chromium"], |
311 }, | 311 }, |
312 ] | 312 ] |
OLD | NEW |