diff options
author | Moonchild <moonchild@palemoon.org> | 2022-03-05 22:06:52 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-03-21 13:24:37 +0000 |
commit | 3088694b8d280f2638c459704d794a50377e768e (patch) | |
tree | 0ae8b3f085381f47fa45991dc2b1e33488038b91 /xpcom/threads/moz.build | |
parent | 830d28b5902b1957569a1a99446bea80feadc0f1 (diff) | |
download | aura-central-3088694b8d280f2638c459704d794a50377e768e.tar.gz |
Issue %2 - De-unify sources in xpcom (2 of 2)
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 |