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": "81365", | 7 "webkit_revision": "81365", |
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": "4559", | 10 "nacl_revision": "4559", |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 249 |
250 # Dependencies used by libjpeg-turbo | 250 # Dependencies used by libjpeg-turbo |
251 "src/third_party/yasm/binaries": | 251 "src/third_party/yasm/binaries": |
252 "/trunk/deps/third_party/yasm/binaries@74228", | 252 "/trunk/deps/third_party/yasm/binaries@74228", |
253 }, | 253 }, |
254 "mac": { | 254 "mac": { |
255 "src/chrome/tools/test/reference_build/chrome_mac": | 255 "src/chrome/tools/test/reference_build/chrome_mac": |
256 "/trunk/deps/reference_builds/chrome_mac@71120", | 256 "/trunk/deps/reference_builds/chrome_mac@71120", |
257 | 257 |
258 "src/third_party/GTM": | 258 "src/third_party/GTM": |
259 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@434", | 259 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@437", |
260 "src/third_party/pdfsqueeze": | 260 "src/third_party/pdfsqueeze": |
261 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 261 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
262 "src/third_party/lighttpd": | 262 "src/third_party/lighttpd": |
263 "/trunk/deps/third_party/lighttpd@33737", | 263 "/trunk/deps/third_party/lighttpd@33737", |
264 | 264 |
265 "src/third_party/WebKit/WebKitLibraries": | 265 "src/third_party/WebKit/WebKitLibraries": |
266 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 266 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
267 | 267 |
268 "src/third_party/swig/mac": | 268 "src/third_party/swig/mac": |
269 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), | 269 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 ] | 326 ] |
327 | 327 |
328 | 328 |
329 hooks = [ | 329 hooks = [ |
330 { | 330 { |
331 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 331 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
332 "pattern": ".", | 332 "pattern": ".", |
333 "action": ["python", "src/build/gyp_chromium"], | 333 "action": ["python", "src/build/gyp_chromium"], |
334 }, | 334 }, |
335 ] | 335 ] |
OLD | NEW |