Chromium Code Reviews| 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": "92162", | 7 "webkit_revision": "92162", |
| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 303 "src/third_party/mingw-w64/mingw/bin": | 303 "src/third_party/mingw-w64/mingw/bin": |
| 304 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + | 304 (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" + |
| 305 Var("nacl_tools_revision")), | 305 Var("nacl_tools_revision")), |
| 306 | 306 |
| 307 "src/rlz": | 307 "src/rlz": |
| 308 (Var("googlecode_url") % "rlz") + "/trunk@44", | 308 (Var("googlecode_url") % "rlz") + "/trunk@44", |
| 309 | 309 |
| 310 # Dependencies used by libjpeg-turbo | 310 # Dependencies used by libjpeg-turbo |
| 311 "src/third_party/yasm/binaries": | 311 "src/third_party/yasm/binaries": |
| 312 "/trunk/deps/third_party/yasm/binaries@74228", | 312 "/trunk/deps/third_party/yasm/binaries@74228", |
| 313 | |
| 314 # Binary level profile guided optimizations. This points to the | |
| 315 # latest release binaries for the toolchain. | |
| 316 "src/third_party/syzygy/binaries": | |
| 317 "https://sawbuck.googlecode.com/svn/trunk/syzygy/binaries", | |
|
Roger McFarlane (Google)
2011/08/03 16:22:28
Pull this from our repo or commit our releases dir
Roger McFarlane (Google)
2011/08/03 17:06:55
nsylvain@ further suggests that everything should
M-A Ruel
2011/08/03 17:32:59
Yes please.
| |
| 313 }, | 318 }, |
| 314 "mac": { | 319 "mac": { |
| 315 "src/chrome/tools/test/reference_build/chrome_mac": | 320 "src/chrome/tools/test/reference_build/chrome_mac": |
| 316 "/trunk/deps/reference_builds/chrome_mac@89574", | 321 "/trunk/deps/reference_builds/chrome_mac@89574", |
| 317 | 322 |
| 318 "src/third_party/GTM": | 323 "src/third_party/GTM": |
| 319 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@446", | 324 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@446", |
| 320 "src/third_party/pdfsqueeze": | 325 "src/third_party/pdfsqueeze": |
| 321 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 326 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
| 322 "src/third_party/lighttpd": | 327 "src/third_party/lighttpd": |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 395 { | 400 { |
| 396 # This downloads binaries for Native Client's integrated runtime (IRT) | 401 # This downloads binaries for Native Client's integrated runtime (IRT) |
| 397 # library, which is built as NaCl untrusted code. | 402 # library, which is built as NaCl untrusted code. |
| 398 "pattern": ".", | 403 "pattern": ".", |
| 399 "action": ["python", "src/build/download_nacl_irt.py", | 404 "action": ["python", "src/build/download_nacl_irt.py", |
| 400 "--nacl_revision", Var("nacl_revision"), | 405 "--nacl_revision", Var("nacl_revision"), |
| 401 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 406 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
| 402 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 407 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
| 403 }, | 408 }, |
| 404 ] | 409 ] |
| OLD | NEW |