Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Unified Diff: DEPS

Issue 7670019: Adding native client toolchain download to all chrome checkouts with nacl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/download_nacl_toolchains.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
===================================================================
--- DEPS (revision 97187)
+++ DEPS (working copy)
@@ -18,6 +18,18 @@
# revisions here, but it makes checkdeps confused. We should fix checkdeps.
"nacl_chrome_ppapi_revision": "96903", # native_client/DEPS: chrome_ppapi_rev
"nacl_tools_revision": "5360", # native_client/DEPS: tools_rev
+
+ # These hashes need to be updated when nacl_toolchain_revision is changed.
+ # After changing nacl_toolchain_revision, run 'gclient runhooks' to get the
+ # new values.
+ "nacl_toolchain_mac_x86_newlib_hash":
+ "be4cc2baf6eb34c8fe155a1bb61e2acd8ca1e924",
+ "nacl_toolchain_win_x86_newlib_hash":
+ "56667d7f653b1005cd5116de3d8e9faf346053cf",
+ "nacl_toolchain_linux_x86_newlib_hash":
+ "5e4876a1fa53c7701cdbeef969a99b3ff0b0ddc5",
+ "nacl_toolchain_revision": "6429",
+
"libjingle_revision": "77",
"libvpx_revision": "96377",
"ffmpeg_revision": "96868",
@@ -414,4 +426,21 @@
"--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"),
"--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")],
},
+ {
+ # This downloads binaries for Native Client's newlib toolchain.
+ # Done in lieu of building the toolchain from scratch as it can take
+ # anywhere from 30 minutes to 4 hours depending on platform to build.
+ "pattern": ".",
+ "action": [
+ "python", "src/build/download_nacl_toolchains.py",
+ "--x86-version", Var("nacl_toolchain_revision"),
+ "--nacl-newlib-only",
+ "--file-hash", "mac_x86_newlib",
+ Var("nacl_toolchain_mac_x86_newlib_hash"),
+ "--file-hash", "win_x86_newlib",
+ Var("nacl_toolchain_win_x86_newlib_hash"),
+ "--file-hash", "linux_x86_newlib",
+ Var("nacl_toolchain_linux_x86_newlib_hash"),
+ ],
+ },
]
« no previous file with comments | « no previous file | build/download_nacl_toolchains.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698