summaryrefslogtreecommitdiffstats
path: root/xpcom/threads/moz.build
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /xpcom/threads/moz.build
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'xpcom/threads/moz.build')
-rw-r--r--xpcom/threads/moz.build89
1 files changed, 89 insertions, 0 deletions
diff --git a/xpcom/threads/moz.build b/xpcom/threads/moz.build
new file mode 100644
index 000000000..5d54a4bf4
--- /dev/null
+++ b/xpcom/threads/moz.build
@@ -0,0 +1,89 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+XPIDL_SOURCES += [
+ 'nsIEnvironment.idl',
+ 'nsIEventTarget.idl',
+ 'nsIIdlePeriod.idl',
+ 'nsIProcess.idl',
+ 'nsIRunnable.idl',
+ 'nsISupportsPriority.idl',
+ 'nsIThread.idl',
+ 'nsIThreadInternal.idl',
+ 'nsIThreadManager.idl',
+ 'nsIThreadPool.idl',
+ 'nsITimer.idl',
+]
+
+XPIDL_MODULE = 'xpcom_threads'
+
+EXPORTS += [
+ 'nsEventQueue.h',
+ 'nsICancelableRunnable.h',
+ 'nsIIncrementalRunnable.h',
+ 'nsMemoryPressure.h',
+ 'nsProcess.h',
+ 'nsThread.h',
+]
+
+EXPORTS.mozilla += [
+ 'AbstractThread.h',
+ 'BackgroundHangMonitor.h',
+ 'HangAnnotations.h',
+ 'HangMonitor.h',
+ 'LazyIdleThread.h',
+ 'MainThreadIdlePeriod.h',
+ 'MozPromise.h',
+ 'SharedThreadPool.h',
+ 'StateMirroring.h',
+ 'StateWatching.h',
+ 'SyncRunnable.h',
+ 'TaskDispatcher.h',
+ 'TaskQueue.h',
+ 'ThrottledEventQueue.h',
+]
+
+UNIFIED_SOURCES += [
+ 'AbstractThread.cpp',
+ 'BackgroundHangMonitor.cpp',
+ 'HangAnnotations.cpp',
+ 'HangMonitor.cpp',
+ 'LazyIdleThread.cpp',
+ 'MainThreadIdlePeriod.cpp',
+ 'nsEnvironment.cpp',
+ 'nsEventQueue.cpp',
+ 'nsMemoryPressure.cpp',
+ 'nsProcessCommon.cpp',
+ 'nsThread.cpp',
+ 'nsThreadManager.cpp',
+ 'nsThreadPool.cpp',
+ 'nsTimerImpl.cpp',
+ 'SharedThreadPool.cpp',
+ 'TaskQueue.cpp',
+ 'ThreadStackHelper.cpp',
+ 'ThrottledEventQueue.cpp',
+ 'TimerThread.cpp',
+]
+
+LOCAL_INCLUDES += [
+ '../build',
+ '/caps',
+ '/tools/profiler',
+]
+
+# 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
+# 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'
+
+include('/ipc/chromium/chromium-config.mozbuild')