mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 1121216 - disable BackgroundHangMonitor for TSan builds; r=jchen
This commit is contained in:
parent
793a8a2c48
commit
8108bffcc3
@ -72,7 +72,11 @@ LOCAL_INCLUDES += [
|
||||
# BHR disabled for Release builds because of bug 965392.
|
||||
# BHR disabled for debug builds because of bug 979069.
|
||||
# BHR disabled on gonk because of bug 1180533
|
||||
if CONFIG['MOZ_UPDATE_CHANNEL'] not in ('release') and not CONFIG['MOZ_DEBUG'] and not CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
||||
# BHR disabled for TSan builds because of bug 1121216.
|
||||
if CONFIG['MOZ_UPDATE_CHANNEL'] not in ('release') and \
|
||||
not CONFIG['MOZ_DEBUG'] and \
|
||||
not CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and \
|
||||
not CONFIG['MOZ_TSAN']:
|
||||
DEFINES['MOZ_ENABLE_BACKGROUND_HANG_MONITOR'] = 1
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
Loading…
Reference in New Issue
Block a user