DEPS: Fix paths to clang-format

The tint -> dawn merge appeared to break these.

Bug: dawn:1339
Change-Id: Ic33a9dbb15ca97b7802894b079a15e7f9b85d83b
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/85980
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
Ben Clayton 2022-04-06 19:57:42 +00:00
parent e87ac76f7d
commit 088a600b03
1 changed files with 8 additions and 9 deletions

17
DEPS
View File

@ -256,27 +256,27 @@ hooks = [
}, },
# Pull clang-format binaries using checked-in hashes. # Pull clang-format binaries using checked-in hashes.
{ {
'name': 'clang_format_win', 'name': 'clang_format_mac_x64',
'pattern': '.', 'pattern': '.',
'condition': 'dawn_standalone and host_os == "win"', 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "x64"',
'action': [ 'download_from_google_storage', 'action': [ 'download_from_google_storage',
'--no_resume', '--no_resume',
'--platform=win32',
'--no_auth', '--no_auth',
'--bucket', 'chromium-clang-format', '--bucket', 'chromium-clang-format',
'-s', 'buildtools/win/clang-format.exe.sha1', '-s', 'buildtools/mac/clang-format.x64.sha1',
'-o', 'buildtools/mac/clang-format',
], ],
}, },
{ {
'name': 'clang_format_mac', 'name': 'clang_format_mac_arm64',
'pattern': '.', 'pattern': '.',
'condition': 'dawn_standalone and host_os == "mac"', 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "arm64"',
'action': [ 'download_from_google_storage', 'action': [ 'download_from_google_storage',
'--no_resume', '--no_resume',
'--platform=darwin',
'--no_auth', '--no_auth',
'--bucket', 'chromium-clang-format', '--bucket', 'chromium-clang-format',
'-s', 'buildtools/mac/clang-format.sha1', '-s', 'buildtools/mac/clang-format.arm64.sha1',
'-o', 'buildtools/mac/clang-format',
], ],
}, },
{ {
@ -285,7 +285,6 @@ hooks = [
'condition': 'dawn_standalone and host_os == "linux"', 'condition': 'dawn_standalone and host_os == "linux"',
'action': [ 'download_from_google_storage', 'action': [ 'download_from_google_storage',
'--no_resume', '--no_resume',
'--platform=linux*',
'--no_auth', '--no_auth',
'--bucket', 'chromium-clang-format', '--bucket', 'chromium-clang-format',
'-s', 'buildtools/linux64/clang-format.sha1', '-s', 'buildtools/linux64/clang-format.sha1',