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": "92385", | 7 "webkit_revision": "92385", |
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 # These hashes need to be updated when nacl_revision is changed. | 10 # These hashes need to be updated when nacl_revision is changed. |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 "src/third_party/mingw-w64/mingw/bin": | 305 "src/third_party/mingw-w64/mingw/bin": |
306 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 306 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
307 Var("nacl_tools_revision")), | 307 Var("nacl_tools_revision")), |
308 | 308 |
309 "src/rlz": | 309 "src/rlz": |
310 (Var("googlecode_url") % "rlz") + "/trunk@44", | 310 (Var("googlecode_url") % "rlz") + "/trunk@44", |
311 | 311 |
312 # Dependencies used by libjpeg-turbo | 312 # Dependencies used by libjpeg-turbo |
313 "src/third_party/yasm/binaries": | 313 "src/third_party/yasm/binaries": |
314 "/trunk/deps/third_party/yasm/binaries@74228", | 314 "/trunk/deps/third_party/yasm/binaries@74228", |
| 315 |
| 316 # Binary level profile guided optimizations. This points to the |
| 317 # latest release binaries for the toolchain. |
| 318 "src/third_party/syzygy/binaries": |
| 319 "https://sawbuck.googlecode.com/svn/trunk/syzygy/binaries@394", |
315 }, | 320 }, |
316 "mac": { | 321 "mac": { |
317 "src/chrome/tools/test/reference_build/chrome_mac": | 322 "src/chrome/tools/test/reference_build/chrome_mac": |
318 "/trunk/deps/reference_builds/chrome_mac@89574", | 323 "/trunk/deps/reference_builds/chrome_mac@89574", |
319 | 324 |
320 "src/third_party/GTM": | 325 "src/third_party/GTM": |
321 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@451", | 326 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@451", |
322 "src/third_party/pdfsqueeze": | 327 "src/third_party/pdfsqueeze": |
323 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 328 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
324 "src/third_party/lighttpd": | 329 "src/third_party/lighttpd": |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 { | 402 { |
398 # This downloads binaries for Native Client's integrated runtime (IRT) | 403 # This downloads binaries for Native Client's integrated runtime (IRT) |
399 # library, which is built as NaCl untrusted code. | 404 # library, which is built as NaCl untrusted code. |
400 "pattern": ".", | 405 "pattern": ".", |
401 "action": ["python", "src/build/download_nacl_irt.py", | 406 "action": ["python", "src/build/download_nacl_irt.py", |
402 "--nacl_revision", Var("nacl_revision"), | 407 "--nacl_revision", Var("nacl_revision"), |
403 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 408 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
404 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 409 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
405 }, | 410 }, |
406 ] | 411 ] |
OLD | NEW |