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

Unified Diff: DEPS

Issue 1414903006: Add buildtools to make depot_tools-wrapped clang-format work (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | no next file » | 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 34313f8e62b5c615780a8e0bb4eb068449bce27c..b5e38f1bcd777013a895dd5de2b86ec808d17ec7 100644
--- a/DEPS
+++ b/DEPS
@@ -29,10 +29,41 @@ deps = {
'crashpad/third_party/mini_chromium/mini_chromium':
Var('chromium_git') + '/chromium/mini_chromium@' +
'8e12d3df2f1c0fcd84d649f4619323558db63a85',
+ 'buildtools':
+ Var('chromium_git') + '/chromium/buildtools.git@' +
+ 'c2f259809d5ede3275df5ea0842f0431990c4f98',
}
hooks = [
{
+ 'name': 'clang_format_mac',
+ 'pattern': '.',
+ 'action': [
+ 'download_from_google_storage',
+ '--platform=^darwin$',
+ '--no_resume',
+ '--no_auth',
+ '--bucket=chromium-clang-format',
+ '--output=buildtools/mac/clang-format',
+ '--sha1_file',
+ 'buildtools/mac/clang-format.sha1',
+ ],
+ },
+ {
+ 'name': 'clang_format_win',
+ 'pattern': '.',
+ 'action': [
+ 'download_from_google_storage',
+ '--platform=^win32$',
+ '--no_resume',
+ '--no_auth',
+ '--bucket=chromium-clang-format',
+ '--output=buildtools/win/clang-format.exe',
+ '--sha1_file',
+ 'buildtools/win/clang-format.exe.sha1',
+ ],
+ },
+ {
'name': 'gyp',
'pattern': '\.gypi?$',
'action': ['python', 'crashpad/build/gyp_crashpad.py'],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698