| Index: DEPS
|
| diff --git a/DEPS b/DEPS
|
| index eb98fa574d8361665810ea930316b50988cfe538..4534ec681795f36283c6f67082979f852f937168 100644
|
| --- a/DEPS
|
| +++ b/DEPS
|
| @@ -1093,6 +1093,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.2',
|
| + '-s', 'src/third_party/node/linux/node-v6.9.2-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.2',
|
| + '-s', 'src/third_party/node/mac/node-v6.9.2-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.2',
|
| + '-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 = [
|
|
|