Bug 1332631 part D - file moves from xpcom/glue to xpcom/threads, r=froydnj

MozReview-Commit-ID: kDBGvlYjyW

--HG--
rename : xpcom/glue/BlockingResourceBase.cpp => xpcom/threads/BlockingResourceBase.cpp
rename : xpcom/glue/BlockingResourceBase.h => xpcom/threads/BlockingResourceBase.h
rename : xpcom/glue/CondVar.h => xpcom/threads/CondVar.h
rename : xpcom/glue/DeadlockDetector.h => xpcom/threads/DeadlockDetector.h
rename : xpcom/glue/MainThreadUtils.h => xpcom/threads/MainThreadUtils.h
rename : xpcom/glue/Monitor.h => xpcom/threads/Monitor.h
rename : xpcom/glue/Mutex.h => xpcom/threads/Mutex.h
rename : xpcom/glue/ReentrantMonitor.h => xpcom/threads/ReentrantMonitor.h
rename : xpcom/glue/nsProxyRelease.cpp => xpcom/threads/nsProxyRelease.cpp
rename : xpcom/glue/nsProxyRelease.h => xpcom/threads/nsProxyRelease.h
rename : xpcom/glue/nsThreadUtils.cpp => xpcom/threads/nsThreadUtils.cpp
rename : xpcom/glue/nsThreadUtils.h => xpcom/threads/nsThreadUtils.h
extra : rebase_source : 5f908c04835192c1949bed0828d7bd086e795f64
extra : histedit_source : 26a8dbfd9b082c9200fbe7b176f6593e406c98ce
This commit is contained in:
Benjamin Smedberg 2017-01-20 14:13:57 -05:00
parent 2b3617b084
commit 60cd8481eb
15 changed files with 12 additions and 12 deletions

View File

@ -10,27 +10,18 @@ with Files('nsString*'):
DIRS += ['standalone']
EXPORTS += [
'MainThreadUtils.h',
'nsCategoryCache.h',
'nsComponentManagerUtils.h',
'nsProxyRelease.h',
'nsServiceManagerUtils.h',
'nsStringAPI.h',
'nsStringGlue.h',
'nsTextFormatter.h',
'nsThreadUtils.h',
'nsXPTCUtils.h',
]
EXPORTS.mozilla += [
'BlockingResourceBase.h',
'CondVar.h',
'DeadlockDetector.h',
'FileUtils.h',
'GenericFactory.h',
'Monitor.h',
'Mutex.h',
'ReentrantMonitor.h',
]
if CONFIG['ENABLE_TESTS']:

View File

@ -8,7 +8,6 @@ xpcom_glue_src_lcppsrcs = [
'FileUtils.cpp',
'nsCategoryCache.cpp',
'nsComponentManagerUtils.cpp',
'nsThreadUtils.cpp',
'XREAppData.cpp',
]
@ -17,9 +16,7 @@ xpcom_glue_src_cppsrcs = [
]
xpcom_gluens_src_lcppsrcs = [
'BlockingResourceBase.cpp',
'GenericFactory.cpp',
'nsProxyRelease.cpp',
'nsTextFormatter.cpp',
]

View File

@ -22,22 +22,31 @@ XPIDL_SOURCES += [
XPIDL_MODULE = 'xpcom_threads'
EXPORTS += [
'MainThreadUtils.h',
'nsEventQueue.h',
'nsICancelableRunnable.h',
'nsIIncrementalRunnable.h',
'nsMemoryPressure.h',
'nsProcess.h',
'nsProxyRelease.h',
'nsThread.h',
'nsThreadUtils.h',
]
EXPORTS.mozilla += [
'AbstractThread.h',
'BackgroundHangMonitor.h',
'BlockingResourceBase.h',
'CondVar.h',
'DeadlockDetector.h',
'HangAnnotations.h',
'HangMonitor.h',
'LazyIdleThread.h',
'MainThreadIdlePeriod.h',
'Monitor.h',
'MozPromise.h',
'Mutex.h',
'ReentrantMonitor.h',
'SharedThreadPool.h',
'StateMirroring.h',
'StateWatching.h',
@ -50,6 +59,7 @@ EXPORTS.mozilla += [
UNIFIED_SOURCES += [
'AbstractThread.cpp',
'BackgroundHangMonitor.cpp',
'BlockingResourceBase.cpp',
'HangAnnotations.cpp',
'HangMonitor.cpp',
'LazyIdleThread.cpp',
@ -58,9 +68,11 @@ UNIFIED_SOURCES += [
'nsEventQueue.cpp',
'nsMemoryPressure.cpp',
'nsProcessCommon.cpp',
'nsProxyRelease.cpp',
'nsThread.cpp',
'nsThreadManager.cpp',
'nsThreadPool.cpp',
'nsThreadUtils.cpp',
'nsTimerImpl.cpp',
'SharedThreadPool.cpp',
'TaskQueue.cpp',