mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
135 lines
2.8 KiB
Makefile
135 lines
2.8 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = xpcom
|
|
XPIDL_MODULE = xpcom_ds
|
|
LIBRARY_NAME = xpcomds_s
|
|
GRE_MODULE = 1
|
|
MOZILLA_INTERNAL_API = 1
|
|
|
|
|
|
CPPSRCS = \
|
|
nsArray.cpp \
|
|
nsAtomTable.cpp \
|
|
nsAtomService.cpp \
|
|
nsByteBuffer.cpp \
|
|
nsCRT.cpp \
|
|
nsFixedSizeAllocator.cpp \
|
|
nsHashPropertyBag.cpp \
|
|
nsHashtable.cpp \
|
|
nsINIParserImpl.cpp \
|
|
nsObserverList.cpp \
|
|
nsObserverService.cpp \
|
|
nsProperties.cpp \
|
|
nsPersistentProperties.cpp \
|
|
nsStaticNameTable.cpp \
|
|
nsStringEnumerator.cpp \
|
|
nsSupportsArray.cpp \
|
|
nsSupportsArrayEnumerator.cpp \
|
|
nsSupportsPrimitives.cpp \
|
|
nsUnicharBuffer.cpp \
|
|
nsVariant.cpp \
|
|
$(NULL)
|
|
|
|
ifdef HAVE_CLOCK_MONOTONIC
|
|
CPPSRCS += TimeStamp_posix.cpp
|
|
else ifeq ($(OS_ARCH),Darwin)
|
|
CPPSRCS += TimeStamp_darwin.cpp
|
|
else ifeq ($(OS_ARCH),WINNT)
|
|
CPPSRCS += TimeStamp_windows.cpp
|
|
else
|
|
$(error No TimeStamp implementation on this platform. Build will not succeed)
|
|
endif
|
|
|
|
EXPORTS_NAMESPACES = mozilla
|
|
|
|
EXPORTS_mozilla = \
|
|
CharTokenizer.h \
|
|
TimeStamp.h \
|
|
StringBuilder.h \
|
|
$(NULL)
|
|
|
|
EXPORTS = \
|
|
nsAtomService.h \
|
|
nsCheapSets.h \
|
|
nsCppSharedAllocator.h \
|
|
nsCRT.h \
|
|
nsExpirationTracker.h \
|
|
nsFixedSizeAllocator.h \
|
|
nsHashtable.h \
|
|
nsIByteBuffer.h \
|
|
nsIUnicharBuffer.h \
|
|
nsMathUtils.h \
|
|
nsObserverList.h \
|
|
nsObserverService.h \
|
|
nsStaticNameTable.h \
|
|
nsStaticAtom.h \
|
|
nsSupportsArray.h \
|
|
nsSupportsPrimitives.h \
|
|
nsVariant.h \
|
|
nsStringEnumerator.h \
|
|
nsHashPropertyBag.h \
|
|
nsWhitespaceTokenizer.h \
|
|
nsCharSeparatedTokenizer.h \
|
|
$(NULL)
|
|
|
|
XPIDLSRCS = \
|
|
nsIAtom.idl \
|
|
nsIAtomService.idl \
|
|
nsICollection.idl \
|
|
nsIEnumerator.idl \
|
|
nsIINIParser.idl \
|
|
nsIPersistentProperties2.idl \
|
|
nsIProperty.idl \
|
|
nsIPropertyBag.idl \
|
|
nsIPropertyBag2.idl \
|
|
nsIWritablePropertyBag.idl \
|
|
nsIWritablePropertyBag2.idl \
|
|
nsIVariant.idl \
|
|
nsISerializable.idl \
|
|
nsIStringEnumerator.idl \
|
|
nsISupportsArray.idl \
|
|
nsISupportsIterators.idl \
|
|
$(NULL)
|
|
|
|
SDK_XPIDLSRCS = \
|
|
nsIArray.idl \
|
|
nsIHashable.idl \
|
|
nsIMutableArray.idl \
|
|
nsIObserverService.idl \
|
|
nsIObserver.idl \
|
|
nsIProperties.idl \
|
|
nsISimpleEnumerator.idl \
|
|
nsISupportsPrimitives.idl \
|
|
$(NULL)
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
CPPSRCS += nsWindowsRegKey.cpp
|
|
XPIDLSRCS += nsIWindowsRegKey.idl
|
|
EXPORTS += nsWindowsRegKey.h
|
|
endif
|
|
|
|
EXTRA_COMPONENTS = \
|
|
nsINIProcessor.js \
|
|
nsINIProcessor.manifest \
|
|
$(NULL)
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../io
|
|
|
|
DEFINES += -D_IMPL_NS_COM
|