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

Unified Diff: DEPS

Issue 2574033002: Downloading Node and NPM deps via gclient sync. (Closed)
Patch Set: Add missing sha1 file. Created 3 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 | « .gitignore ('k') | third_party/node/LICENSE » ('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 d4a02856e732fa1c9e27e88a81d6d25a4f6d50ff..49a0ad9abaa6d7bf610658ca0ecba51b4ee46c1c 100644
--- a/DEPS
+++ b/DEPS
@@ -1101,6 +1101,56 @@ hooks = [
'--version',
],
},
+
+ # Pull down Node binaries for WebUI toolchain.
+ {
+ 'name': 'node_linux64',
+ 'pattern': '.',
+ 'action': [ 'download_from_google_storage',
+ '--no_resume',
+ '--platform=linux*',
+ '--extract',
+ '--no_auth',
+ '--bucket', 'chromium-nodejs/6.9.4',
+ '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1',
+ ],
+ },
+ {
+ 'name': 'node_mac',
+ 'pattern': '.',
+ 'action': [ 'download_from_google_storage',
+ '--no_resume',
+ '--platform=darwin',
+ '--extract',
+ '--no_auth',
+ '--bucket', 'chromium-nodejs/6.9.4',
+ '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1',
+ ],
+ },
+ {
+ 'name': 'node_win',
+ 'pattern': '.',
+ 'action': [ 'download_from_google_storage',
+ '--no_resume',
+ '--platform=win32',
+ '--no_auth',
+ '--bucket', 'chromium-nodejs/6.9.4',
+ '-s', 'src/third_party/node/win/node.exe.sha1',
+ ],
+ },
+
+ # Pull down NPM dependencies for WebUI toolchain.
+ {
+ 'name': 'webui_node_modules',
+ 'pattern': '.',
+ 'action': [ 'download_from_google_storage',
+ '--no_resume',
+ '--extract',
+ '--no_auth',
+ '--bucket', 'chromium-nodejs',
+ '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
+ ],
+ },
]
recursedeps = [
« no previous file with comments | « .gitignore ('k') | third_party/node/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698