summaryrefslogtreecommitdiffstats
path: root/xpcom/threads/moz.build
blob: 53e6b5922dc8ced85a4c7421bb50d3ec6b943b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# -*- 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 for TSan builds because of bug 1121216.
if CONFIG['MOZ_UPDATE_CHANNEL'] not in ('release') and \
   not CONFIG['MOZ_DEBUG'] and \
   not CONFIG['MOZ_TSAN']:
    DEFINES['MOZ_ENABLE_BACKGROUND_HANG_MONITOR'] = 1

FINAL_LIBRARY = 'xul'

include('/ipc/chromium/chromium-config.mozbuild')