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

Unified Diff: DEPS

Issue 125593004: Add node.js gsutil .sha1 files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 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 | tools/nodejs/LICENSE » ('j') | tools/nodejs/README.chromium » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index c7ce548ca0f3527b8c35a30eed6b9f7d19935e27..fcaa96cfdfc204f95bf78d79b401b4860163afa7 100644
--- a/DEPS
+++ b/DEPS
@@ -646,6 +646,40 @@ 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",
+ "pattern": "src/tools/nodejs/linux/*.sha1",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=linux*",
+ "--no_auth",
+ "--bucket", "chromium-nodejs",
+ "--directory", "src/tools/nodejs/linux",
+ ],
+ },
# Pull GN binaries. This needs to be before running GYP below.
{
"name": "gn_win",
« no previous file with comments | « no previous file | tools/nodejs/LICENSE » ('j') | tools/nodejs/README.chromium » ('J')

Powered by Google App Engine
This is Rietveld 408576698