Issue #unknown, update mozglue delay-load DLL list.

This commit is contained in:
roytam1 2022-01-19 10:19:41 +08:00
commit 1644733848

View file

@ -18,7 +18,13 @@ if CONFIG['MOZ_ASAN']:
if CONFIG['OS_TARGET'] == 'WINNT': if CONFIG['OS_TARGET'] == 'WINNT':
DEFFILE = 'mozglue.def' DEFFILE = 'mozglue.def'
# We'll break the DLL blocklist if we immediately load user32.dll # We'll break the DLL blocklist if we immediately load user32.dll
DELAYLOAD_DLLS += ['user32.dll'] # For the same reason, we delayload these other DLLs to avoid eager
# dependencies on user32.dll.
DELAYLOAD_DLLS += [
'dbghelp.dll',
'user32.dll',
'version.dll',
]
if not CONFIG['JS_STANDALONE']: if not CONFIG['JS_STANDALONE']: