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

Unified Diff: DEPS

Issue 334403005: Roll buildtools to fb782d4369d5ae04f17a2fceef7de5a63e50f07b (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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
« .DEPS.git ('K') | « .DEPS.git ('k') | Makefile » ('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 df419a78a370210c17e1e9f0615d3e92fcb18f55..eb164c4c2dd487f29170205cb486346d70bf109a 100644
--- a/DEPS
+++ b/DEPS
@@ -5,7 +5,7 @@
vars = {
"chromium_trunk": "https://src.chromium.org/svn/trunk",
- "buildtools_revision": "5d89977ce55240995d1596fe420b818468f5ec37",
+ "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b",
}
deps = {
@@ -44,6 +44,40 @@ skip_child_includes = [
]
hooks = [
+ # Pull clang-format binaries using checked-in hashes.
+ {
+ "name": "clang_format_win",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=win32",
+ "--no_auth",
+ "--bucket", "chromium-clang-format",
+ "-s", "v8/buildtools/win/clang-format.exe.sha1",
+ ],
+ },
+ {
+ "name": "clang_format_mac",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=darwin",
+ "--no_auth",
+ "--bucket", "chromium-clang-format",
+ "-s", "v8/buildtools/mac/clang-format.sha1",
+ ],
+ },
+ {
+ "name": "clang_format_linux",
+ "pattern": ".",
+ "action": [ "download_from_google_storage",
+ "--no_resume",
+ "--platform=linux*",
+ "--no_auth",
+ "--bucket", "chromium-clang-format",
+ "-s", "v8/buildtools/linux64/clang-format.sha1",
+ ],
+ },
{
# A change to a .gyp, .gypi, or to GYP itself should run the generator.
"pattern": ".",
« .DEPS.git ('K') | « .DEPS.git ('k') | Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698