moz.build (basilisk-2021.12.14-source.tar.xz) | : | moz.build (basilisk-2022.01.27-source.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
Library('mozglue') | Library('mozglue') | |||
SDK_LIBRARY = True | SDK_LIBRARY = True | |||
if CONFIG['MOZ_ASAN']: | if CONFIG['MOZ_ASAN']: | |||
SOURCES += ['AsanOptions.cpp'] | SOURCES += ['AsanOptions.cpp'] | |||
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']: | |||
if CONFIG['MOZ_MEMORY'] and FORCE_SHARED_LIB: | if CONFIG['MOZ_MEMORY'] and FORCE_SHARED_LIB: | |||
pass | pass | |||
# TODO: SHARED_LIBRARY_LIBS go here | # TODO: SHARED_LIBRARY_LIBS go here | |||
else: | else: | |||
# Temporary, until bug 662814 lands | # Temporary, until bug 662814 lands | |||
NO_VISIBILITY_FLAGS = True | NO_VISIBILITY_FLAGS = True | |||
SOURCES += ['dummy.cpp'] | SOURCES += ['dummy.cpp'] | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 7 lines changed or added |