2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = xpcom
|
|
|
|
XPIDL_MODULE = xpcom_base
|
|
|
|
LIBRARY_NAME = xpcombase_s
|
|
|
|
GRE_MODULE = 1
|
|
|
|
MOZILLA_INTERNAL_API =1
|
2009-11-25 12:41:58 -08:00
|
|
|
LIBXUL_LIBRARY = 1
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-11-03 20:53:41 -07:00
|
|
|
# TODO: we do this in crashreporter and storage/src too, should be centralized
|
2010-05-26 12:40:52 -07:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
DEFINES += -DXP_LINUX
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS = \
|
|
|
|
nsVersionComparatorImpl.cpp \
|
|
|
|
nsConsoleMessage.cpp \
|
|
|
|
nsConsoleService.cpp \
|
|
|
|
nsDebugImpl.cpp \
|
|
|
|
nsErrorService.cpp \
|
|
|
|
nsExceptionService.cpp \
|
|
|
|
nsMemoryImpl.cpp \
|
|
|
|
nsTraceRefcntImpl.cpp \
|
|
|
|
nsInterfaceRequestorAgg.cpp \
|
|
|
|
nsUUIDGenerator.cpp \
|
|
|
|
nsSystemInfo.cpp \
|
|
|
|
nsCycleCollector.cpp \
|
2007-08-10 14:28:22 -07:00
|
|
|
nsStackWalk.cpp \
|
2008-03-05 17:28:25 -08:00
|
|
|
nsMemoryReporterManager.cpp \
|
2012-01-26 12:54:03 -08:00
|
|
|
ClearOnShutdown.cpp \
|
2012-06-12 10:06:21 -07:00
|
|
|
VisualEventTracer.cpp \
|
2012-08-07 01:27:45 -07:00
|
|
|
nsErrorAsserts.cpp \
|
2012-10-02 18:19:11 -07:00
|
|
|
nsGZFileWriter.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2011-08-05 15:22:11 -07:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
CPPSRCS += MapsMemoryReporter.cpp
|
|
|
|
endif
|
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsMacUtilsImpl.cpp
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXPORTS = \
|
|
|
|
nsAgg.h \
|
2008-11-05 14:13:37 -08:00
|
|
|
nsAutoRef.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCom.h \
|
|
|
|
nsDebugImpl.h \
|
|
|
|
nsIAllocator.h \
|
|
|
|
nsIID.h \
|
2012-02-19 19:51:48 -08:00
|
|
|
nsISizeOf.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsISupportsObsolete.h \
|
2007-08-10 14:28:22 -07:00
|
|
|
nsStackWalk.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTraceRefcntImpl.h \
|
|
|
|
nsWeakPtr.h \
|
|
|
|
nsInterfaceRequestorAgg.h \
|
2011-12-08 19:09:36 -08:00
|
|
|
dmd.h \
|
2012-10-02 18:19:11 -07:00
|
|
|
nsGZFileWriter.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2010-04-20 00:04:42 -07:00
|
|
|
EXPORTS_NAMESPACES = mozilla
|
|
|
|
|
|
|
|
EXPORTS_mozilla = \
|
2011-08-05 15:22:11 -07:00
|
|
|
MapsMemoryReporter.h \
|
2011-12-15 07:51:11 -08:00
|
|
|
ClearOnShutdown.h \
|
2012-07-26 12:33:45 -07:00
|
|
|
StaticPtr.h \
|
2011-12-15 11:48:38 -08:00
|
|
|
AvailableMemoryTracker.h \
|
2012-02-03 12:13:24 -08:00
|
|
|
StackWalk.h \
|
2012-06-12 10:06:21 -07:00
|
|
|
VisualEventTracer.h \
|
2010-04-20 00:04:42 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2010-11-09 18:02:09 -08:00
|
|
|
ifeq (windows,$(MOZ_WIDGET_TOOLKIT))
|
2011-02-11 17:56:11 -08:00
|
|
|
CPPSRCS += nsCrashOnException.cpp
|
2010-11-09 18:02:09 -08:00
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2011-12-15 11:48:38 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
CSRCS += pure_api.c
|
|
|
|
EXPORTS += pure.h
|
|
|
|
endif
|
2011-12-15 11:48:38 -08:00
|
|
|
|
|
|
|
CPPSRCS += AvailableMemoryTracker.cpp
|
|
|
|
|
|
|
|
endif #if OS_ARCH == WINNT
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
SDK_XPIDLSRCS = \
|
|
|
|
nsIDebug.idl \
|
|
|
|
nsIInterfaceRequestor.idl \
|
|
|
|
nsIMemory.idl \
|
|
|
|
nsIProgrammingLanguage.idl \
|
|
|
|
nsISupports.idl \
|
|
|
|
nsITraceRefcnt.idl \
|
|
|
|
nsIWeakReference.idl \
|
2008-03-05 17:28:25 -08:00
|
|
|
nsrootidl.idl
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
SDK_HEADERS = \
|
2008-12-10 06:17:14 -08:00
|
|
|
nsAutoPtr.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsError.h \
|
|
|
|
nsISupportsBase.h \
|
|
|
|
nscore.h \
|
2010-08-17 10:25:41 -07:00
|
|
|
nsAtomicRefcnt.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCycleCollector.h \
|
2008-02-13 15:11:11 -08:00
|
|
|
nsObjCExceptions.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
SDK_HEADERS += \
|
|
|
|
nsWindowsHelpers.h \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
XPIDLSRCS = \
|
|
|
|
nsIConsoleListener.idl \
|
|
|
|
nsIConsoleMessage.idl \
|
|
|
|
nsIConsoleService.idl \
|
2010-08-11 17:03:23 -07:00
|
|
|
nsICycleCollectorListener.idl \
|
2009-01-08 13:50:21 -08:00
|
|
|
nsIDebug2.idl \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIErrorService.idl \
|
|
|
|
nsIException.idl \
|
|
|
|
nsIExceptionService.idl \
|
|
|
|
nsIVersionComparator.idl \
|
|
|
|
nsIUUIDGenerator.idl \
|
|
|
|
nsIMutable.idl \
|
2008-03-05 17:28:25 -08:00
|
|
|
nsIMemoryReporter.idl \
|
2012-10-02 18:19:11 -07:00
|
|
|
nsIGZFileWriter.idl \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
XPIDLSRCS += nsIMacUtils.idl
|
|
|
|
endif
|
|
|
|
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
|
|
|
2011-10-06 13:22:43 -07:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
2008-03-05 03:10:35 -08:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
DEFINES += -D_IMPL_NS_COM
|
2008-03-05 03:26:06 -08:00
|
|
|
|
2008-03-14 08:42:34 -07:00
|
|
|
ifneq (,$(filter gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
CXXFLAGS += $(MOZ_GTK2_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2011-12-22 17:24:43 -08:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(srcdir)/../build \
|
|
|
|
-I$(topsrcdir)/xpcom/ds \
|
|
|
|
$(NULL)
|