Remove hooks that are causing *-rel builds to fail
These were not in the original Dawn DEPS, so most likely were unintentionally ported/only needed for Tint standalone builds. BUG=dawn:1339 Change-Id: I3e42a7a05da2f3f114674229f557602b7d9dee37 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86006 Auto-Submit: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
parent
e72e42d9e0
commit
b07c120772
47
DEPS
47
DEPS
|
@ -290,53 +290,6 @@ hooks = [
|
||||||
'-s', 'buildtools/linux64/clang-format.sha1',
|
'-s', 'buildtools/linux64/clang-format.sha1',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
# Pull the compilers and system libraries for hermetic builds
|
|
||||||
{
|
|
||||||
'name': 'sysroot_x86',
|
|
||||||
'pattern': '.',
|
|
||||||
'condition': 'checkout_linux and ((checkout_x86 or checkout_x64))',
|
|
||||||
'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
|
|
||||||
'--arch=x86'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'name': 'sysroot_x64',
|
|
||||||
'pattern': '.',
|
|
||||||
'condition': 'checkout_linux and (checkout_x64)',
|
|
||||||
'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
|
|
||||||
'--arch=x64'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
# Update the Mac toolchain if necessary.
|
|
||||||
'name': 'mac_toolchain',
|
|
||||||
'pattern': '.',
|
|
||||||
'condition': 'checkout_mac',
|
|
||||||
'action': ['python3', 'build/mac_toolchain.py'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
|
||||||
'name': 'win_toolchain',
|
|
||||||
'pattern': '.',
|
|
||||||
'condition': 'checkout_win',
|
|
||||||
'action': ['python3', 'build/vs_toolchain.py', 'update', '--force'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
||||||
'name': 'clang',
|
|
||||||
'pattern': '.',
|
|
||||||
'action': ['python3', 'tools/clang/scripts/update.py'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
# Pull rc binaries using checked-in hashes.
|
|
||||||
'name': 'rc_win',
|
|
||||||
'pattern': '.',
|
|
||||||
'condition': 'checkout_win and (host_os == "win")',
|
|
||||||
'action': [ 'download_from_google_storage',
|
|
||||||
'--no_resume',
|
|
||||||
'--no_auth',
|
|
||||||
'--bucket', 'chromium-browser-clang/rc',
|
|
||||||
'-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
# Update build/util/LASTCHANGE.
|
# Update build/util/LASTCHANGE.
|
||||||
{
|
{
|
||||||
'name': 'lastchange',
|
'name': 'lastchange',
|
||||||
|
|
Loading…
Reference in New Issue