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

Unified Diff: DEPS

Issue 1154633003: Add luci-go's isolate tool, downloaded via runhooks. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Created 5 years, 7 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
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',
« .gitignore ('K') | « .gitignore ('k') | tools/luci-go/linux64/isolate.sha1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698