зеркало из https://github.com/mozilla/gecko-dev.git
124 строки
2.8 KiB
Python
124 строки
2.8 KiB
Python
# -*- 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',
|
|
'nsINamed.idl',
|
|
'nsIProcess.idl',
|
|
'nsIRunnable.idl',
|
|
'nsISerialEventTarget.idl',
|
|
'nsISupportsPriority.idl',
|
|
'nsIThread.idl',
|
|
'nsIThreadInternal.idl',
|
|
'nsIThreadManager.idl',
|
|
'nsIThreadPool.idl',
|
|
'nsITimer.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'xpcom_threads'
|
|
|
|
EXPORTS += [
|
|
'MainThreadUtils.h',
|
|
'nsICancelableRunnable.h',
|
|
'nsIIdleRunnable.h',
|
|
'nsILabelableRunnable.h',
|
|
'nsMemoryPressure.h',
|
|
'nsProcess.h',
|
|
'nsProxyRelease.h',
|
|
'nsThread.h',
|
|
'nsThreadManager.h',
|
|
'nsThreadUtils.h',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'AbstractEventQueue.h',
|
|
'AbstractThread.h',
|
|
'BlockingResourceBase.h',
|
|
'CondVar.h',
|
|
'CooperativeThreadPool.h',
|
|
'CPUUsageWatcher.h',
|
|
'DeadlockDetector.h',
|
|
'EventQueue.h',
|
|
'HangAnnotations.h',
|
|
'HangMonitor.h',
|
|
'IdleTaskRunner.h',
|
|
'LazyIdleThread.h',
|
|
'MainThreadIdlePeriod.h',
|
|
'Monitor.h',
|
|
'MozPromise.h',
|
|
'Mutex.h',
|
|
'Queue.h',
|
|
'RecursiveMutex.h',
|
|
'ReentrantMonitor.h',
|
|
'RWLock.h',
|
|
'Scheduler.h',
|
|
'SchedulerGroup.h',
|
|
'SharedThreadPool.h',
|
|
'StateMirroring.h',
|
|
'StateWatching.h',
|
|
'SynchronizedEventQueue.h',
|
|
'SyncRunnable.h',
|
|
'SystemGroup.h',
|
|
'TaskCategory.h',
|
|
'TaskDispatcher.h',
|
|
'TaskQueue.h',
|
|
'ThreadEventQueue.h',
|
|
'ThrottledEventQueue.h',
|
|
]
|
|
|
|
SOURCES += [
|
|
'IdleTaskRunner.cpp',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'AbstractThread.cpp',
|
|
'BlockingResourceBase.cpp',
|
|
'CooperativeThreadPool.cpp',
|
|
'CPUUsageWatcher.cpp',
|
|
'EventQueue.cpp',
|
|
'HangAnnotations.cpp',
|
|
'HangMonitor.cpp',
|
|
'InputEventStatistics.cpp',
|
|
'LabeledEventQueue.cpp',
|
|
'LazyIdleThread.cpp',
|
|
'MainThreadIdlePeriod.cpp',
|
|
'nsEnvironment.cpp',
|
|
'nsILabelableRunnable.cpp',
|
|
'nsMemoryPressure.cpp',
|
|
'nsProcessCommon.cpp',
|
|
'nsProxyRelease.cpp',
|
|
'nsThread.cpp',
|
|
'nsThreadManager.cpp',
|
|
'nsThreadPool.cpp',
|
|
'nsThreadUtils.cpp',
|
|
'nsTimerImpl.cpp',
|
|
'PrioritizedEventQueue.cpp',
|
|
'RecursiveMutex.cpp',
|
|
'RWLock.cpp',
|
|
'Scheduler.cpp',
|
|
'SchedulerGroup.cpp',
|
|
'SharedThreadPool.cpp',
|
|
'SynchronizedEventQueue.cpp',
|
|
'SystemGroup.cpp',
|
|
'TaskQueue.cpp',
|
|
'ThreadEventQueue.cpp',
|
|
'ThreadEventTarget.cpp',
|
|
'ThrottledEventQueue.cpp',
|
|
'TimerThread.cpp',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../build',
|
|
'/caps',
|
|
'/tools/profiler',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|