Chromium Code Reviews| Index: DEPS |
| diff --git a/DEPS b/DEPS |
| index e2d5c85f8b56105882d7ca9426cbbb640ac784f1..063df3ca05ebfc78d9234e9be6f5873273778d8e 100644 |
| --- a/DEPS |
| +++ b/DEPS |
| @@ -658,6 +658,40 @@ hooks = [ |
| '-s', 'src/buildtools/linux64/clang-format.sha1', |
| ], |
| }, |
| + # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| + { |
| + 'name': 'luci-go_win', |
| + 'pattern': '.', |
| + 'action': [ 'download_from_google_storage', |
| + '--no_resume', |
| + '--platform=win32', |
| + '--no_auth', |
| + '--bucket', 'chromium-luci', |
| + '-d', 'src/tools/luci-go/win64', |
| + ], |
| + }, |
| + { |
| + 'name': 'luci-go_mac', |
| + 'pattern': '.', |
| + 'action': [ 'download_from_google_storage', |
| + '--no_resume', |
| + '--platform=darwin', |
| + '--no_auth', |
| + '--bucket', 'chromium-luci', |
| + '-d', 'src/tools/luci-go/mac64', |
| + ], |
| + }, |
| + { |
| + 'name': 'luci-go_linux', |
| + 'pattern': '.', |
| + 'action': [ 'download_from_google_storage', |
| + '--no_resume', |
| + '--platform=linux*', |
| + '--no_auth', |
| + '--bucket', 'chromium-luci', |
| + '-d', 'src/tools/luci-go/linux64', |
|
Vadim Sh.
2015/05/22 19:24:06
how about moving "64" part to the file name instea
M-A Ruel
2015/05/22 19:29:09
I'd prefer not. It's easier to just change the dir
Vadim Sh.
2015/05/22 19:30:03
Okay.
|
| + ], |
| + }, |
| # Pull eu-strip binaries using checked-in hashes. |
| { |
| 'name': 'eu-strip', |