Roll Chromium's build system to fix Windows builds
build/win_toolchain.json was updated out of band so we need to roll all Chromium's build support repos to pick up the respective change to build/vs_toolchain.py In the meantime, LASTCHANGE-related functionality changed and requires a new hook to run before we can call `gn gen`. TBR=kainino@chromium.org TBR=senorblanco@chromium.org BUG=chromium:906559 Change-Id: Ic5d297b5700193ca72b02874073e6c553f06e04f Reviewed-on: https://dawn-review.googlesource.com/c/2560 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
parent
ccfd89d1e3
commit
15d8cb765f
15
DEPS
15
DEPS
|
@ -12,19 +12,19 @@ vars = {
|
|||
deps = {
|
||||
# Dependencies required to use GN/Clang in standalone
|
||||
'build': {
|
||||
'url': '{chromium_git}/chromium/src/build@ddcfe1a1c6428569cb8c900735be3567358bc6ee',
|
||||
'url': '{chromium_git}/chromium/src/build@2fb6537bf59c9c9a736997b8bd888ca0ecf54322',
|
||||
'condition': 'dawn_standalone',
|
||||
},
|
||||
'buildtools': {
|
||||
'url': '{chromium_git}/chromium/buildtools@9a90d9aaadeb5e04327ed05775f45132e4b3523f',
|
||||
'url': '{chromium_git}/chromium/buildtools@24ebce4578745db15274e180da1938ebc1358243',
|
||||
'condition': 'dawn_standalone',
|
||||
},
|
||||
'tools/clang': {
|
||||
'url': '{chromium_git}/chromium/src/tools/clang@d299f069f8d1dca337354ced634df7a78e4512f7',
|
||||
'url': '{chromium_git}/chromium/src/tools/clang@1d879cee563167a2b18baffb096cf9e29f2f9376',
|
||||
'condition': 'dawn_standalone',
|
||||
},
|
||||
'third_party/binutils': {
|
||||
'url': '{chromium_git}/chromium/src/third_party/binutils@4110e09197116a9c5dedd4c827bbe95c224f87ac',
|
||||
'url': '{chromium_git}/chromium/src/third_party/binutils@2be73f7fbf783d7a0b288e174a5773b67c7656bc',
|
||||
'condition': 'dawn_standalone',
|
||||
},
|
||||
|
||||
|
@ -223,6 +223,13 @@ hooks = [
|
|||
'third_party/binutils/download.py',
|
||||
],
|
||||
},
|
||||
# Update build/util/LASTCHANGE.
|
||||
{
|
||||
'name': 'lastchange',
|
||||
'pattern': '.',
|
||||
'action': ['python', 'build/util/lastchange.py',
|
||||
'-o', 'build/util/LASTCHANGE'],
|
||||
},
|
||||
]
|
||||
|
||||
recursedeps = [
|
||||
|
|
Loading…
Reference in New Issue