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

Unified Diff: DEPS

Issue 6893080: NaCl: Pull in NaCl's integrated runtime (IRT) library via DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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_irt.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index b843fc145697ac258cf5b3cea9af27f4f9f8cee9..37b71270b1af3f0bc33a434d3b6916d54670caac 100644
--- a/DEPS
+++ b/DEPS
@@ -7,6 +7,9 @@ vars = {
"webkit_revision": "84939",
"chromium_git": "http://git.chromium.org/git",
"swig_revision": "69281",
+ # These hashes need to be updated when nacl_revision is changed.
+ "nacl_irt_hash_x86_32": "22aa515c504417708751f081f4b4325c0cebb1c7",
+ "nacl_irt_hash_x86_64": "3f345b96ba52220f404140d73f75d5443818774a",
"nacl_revision": "5062",
"nacl_tools_revision": "5025",
"libjingle_revision": "55",
@@ -356,4 +359,13 @@ hooks = [
"pattern": ".",
"action": ["python", "src/build/gyp_chromium"],
},
+ {
+ # This downloads binaries for Native Client's integrated runtime (IRT)
+ # library, which is built as NaCl untrusted code.
+ "pattern": ".",
+ "action": ["python", "src/build/download_nacl_irt.py",
Mark Mentovai 2011/04/28 18:41:16 What’s this about?
+ "--nacl_revision", Var("nacl_revision"),
+ "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"),
+ "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")],
+ },
]
« no previous file with comments | « no previous file | build/download_nacl_irt.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698