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": "97725", | 7 "webkit_revision": "97725", |
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": "6941", | 10 "nacl_revision": "6941", |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 323 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
324 Var("nacl_tools_revision")), | 324 Var("nacl_tools_revision")), |
325 | 325 |
326 "src/rlz": | 326 "src/rlz": |
327 (Var("googlecode_url") % "rlz") + "/trunk@49", | 327 (Var("googlecode_url") % "rlz") + "/trunk@49", |
328 | 328 |
329 # Dependencies used by libjpeg-turbo | 329 # Dependencies used by libjpeg-turbo |
330 "src/third_party/yasm/binaries": | 330 "src/third_party/yasm/binaries": |
331 "/trunk/deps/third_party/yasm/binaries@74228", | 331 "/trunk/deps/third_party/yasm/binaries@74228", |
332 | 332 |
333 # Binary level profile guided optimizations. This points to the | 333 # Binary level profile guided optimizations. This points to the |
334 # latest release binaries for the toolchain. | 334 # latest release binaries for the toolchain. |
335 "src/third_party/syzygy/binaries": | 335 "src/third_party/syzygy/binaries": |
336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@427", | 336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@477", |
337 }, | 337 }, |
338 "mac": { | 338 "mac": { |
339 "src/chrome/tools/test/reference_build/chrome_mac": | 339 "src/chrome/tools/test/reference_build/chrome_mac": |
340 "/trunk/deps/reference_builds/chrome_mac@89574", | 340 "/trunk/deps/reference_builds/chrome_mac@89574", |
341 | 341 |
342 "src/third_party/GTM": | 342 "src/third_party/GTM": |
343 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@459", | 343 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@459", |
344 "src/third_party/pdfsqueeze": | 344 "src/third_party/pdfsqueeze": |
345 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 345 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
346 "src/third_party/lighttpd": | 346 "src/third_party/lighttpd": |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 # which takes ~20s, but clang speeds up builds by more than 20s. | 434 # which takes ~20s, but clang speeds up builds by more than 20s. |
435 "pattern": ".", | 435 "pattern": ".", |
436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
437 }, | 437 }, |
438 { | 438 { |
439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
440 "pattern": ".", | 440 "pattern": ".", |
441 "action": ["python", "src/build/gyp_chromium"], | 441 "action": ["python", "src/build/gyp_chromium"], |
442 }, | 442 }, |
443 ] | 443 ] |
OLD | NEW |