2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:20:02 +00:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
DIRS += ['standalone', 'nomozalloc']
|
|
|
|
|
|
|
|
# On win we build two glue libs - glue linked to crt dlls here and in staticruntime we build
|
|
|
|
# a statically linked glue lib.
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
DIRS += ['staticruntime']
|
2013-03-19 18:47:00 +00:00
|
|
|
|
|
|
|
MODULE = 'xpcom'
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS += [
|
|
|
|
'nsCycleCollectionNoteChild.h',
|
2013-05-20 20:08:11 +00:00
|
|
|
'nsCycleCollectionNoteRootCallback.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'nsCycleCollectionTraversalCallback.h',
|
|
|
|
'nsCycleCollectorUtils.h',
|
|
|
|
'nsProxyRelease.h',
|
|
|
|
'nsTPriorityQueue.h',
|
|
|
|
'nsThreadUtils.h',
|
|
|
|
'nsXPTCUtils.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'AppData.h',
|
|
|
|
'AutoRestore.h',
|
|
|
|
'BlockingResourceBase.h',
|
|
|
|
'CondVar.h',
|
|
|
|
'DeadlockDetector.h',
|
|
|
|
'FileUtils.h',
|
|
|
|
'GenericFactory.h',
|
|
|
|
'IntentionalCrash.h',
|
|
|
|
'Monitor.h',
|
|
|
|
'Mutex.h',
|
|
|
|
'Observer.h',
|
|
|
|
'ReentrantMonitor.h',
|
|
|
|
'SSE.h',
|
|
|
|
'arm.h',
|
|
|
|
'unused.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.threads += [
|
|
|
|
'nsThreadIDs.h',
|
|
|
|
]
|
|
|
|
|
2013-04-23 21:54:15 +00:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'$(XPCOM_GLUENS_SRC_LCPPSRCS)',
|
|
|
|
'$(XPCOM_GLUE_SRC_LCPPSRCS)',
|
|
|
|
'GenericModule.cpp',
|
|
|
|
'nsStringAPI.cpp',
|
|
|
|
]
|
|
|
|
|