Chromium Code Reviews| 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")], |
| + }, |
| ] |