diff options
Diffstat (limited to 'xpcom/threads/moz.build')
-rw-r--r-- | xpcom/threads/moz.build | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xpcom/threads/moz.build b/xpcom/threads/moz.build index 381cd148f..10d9e47b1 100644 --- a/xpcom/threads/moz.build +++ b/xpcom/threads/moz.build @@ -45,7 +45,7 @@ EXPORTS.mozilla += [ 'ThrottledEventQueue.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'AbstractThread.cpp', 'BackgroundHangMonitor.cpp', 'HangAnnotations.cpp', @@ -72,11 +72,9 @@ LOCAL_INCLUDES += [ '/tools/profiler', ] -# BHR disabled for Release builds because of bug 965392. # BHR disabled for debug builds because of bug 979069. # BHR disabled for TSan builds because of bug 1121216. -if CONFIG['MOZ_UPDATE_CHANNEL'] not in ('release') and \ - not CONFIG['MOZ_DEBUG'] and \ +if not CONFIG['MOZ_DEBUG'] and \ not CONFIG['MOZ_TSAN']: DEFINES['MOZ_ENABLE_BACKGROUND_HANG_MONITOR'] = 1 |