Index: DEPS |
diff --git a/DEPS b/DEPS |
index c7ce548ca0f3527b8c35a30eed6b9f7d19935e27..199bd9ba8ec6f3bf469097bd040c062ac40133ab 100644 |
--- a/DEPS |
+++ b/DEPS |
@@ -646,6 +646,51 @@ hooks = [ |
"-s", "src/third_party/WebKit", |
"-o", "src/build/util/LASTCHANGE.blink"], |
}, |
+ # Pull node.js binaries. |
+ { |
+ "name": "nodejs_win", |
+ "pattern": "src/tools/nodejs/win/node.exe.sha1", |
+ "action": [ "download_from_google_storage", |
+ "--no_resume", |
+ "--platform=win32", |
+ "--no_auth", |
+ "--bucket", "chromium-nodejs", |
+ "-s", "src/tools/nodejs/win/node.exe.sha1", |
+ ], |
+ }, |
+ { |
+ "name": "nodejs_mac", |
+ "pattern": "src/tools/nodejs/mac/node.sha1", |
+ "action": [ "download_from_google_storage", |
+ "--no_resume", |
+ "--platform=darwin", |
+ "--no_auth", |
+ "--bucket", "chromium-nodejs", |
+ "-s", "src/tools/nodejs/mac/node.sha1", |
+ ], |
+ }, |
+ { |
+ "name": "nodejs_linux", |
Ryan Tseng
2014/01/07 21:18:00
You can probably combine this and the one below in
raymes
2014/01/07 22:56:54
I'm not 100% clear on what you mean :) Could you p
Ryan Tseng
2014/01/07 23:00:45
So this would be
{
"name": "nodejs_linux",
"
|
+ "pattern": "src/tools/nodejs/linux/node.sha1", |
+ "action": [ "download_from_google_storage", |
+ "--no_resume", |
+ "--platform=linux*", |
+ "--no_auth", |
+ "--bucket", "chromium-nodejs", |
+ "-s", "src/tools/nodejs/linux/node.sha1", |
+ ], |
+ }, |
+ { |
+ "name": "nodejs_linux32", |
+ "pattern": "src/tools/nodejs/linux/node32.sha1", |
+ "action": [ "download_from_google_storage", |
+ "--no_resume", |
+ "--platform=linux*", |
+ "--no_auth", |
+ "--bucket", "chromium-nodejs", |
+ "-s", "src/tools/nodejs/linux/node32.sha1", |
+ ], |
+ }, |
# Pull GN binaries. This needs to be before running GYP below. |
{ |
"name": "gn_win", |