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
|
|
|
|
|
|
|
|
LIBRARY_NAME = xpcombase_s
|
2013-05-16 06:33:26 -07:00
|
|
|
MSVC_ENABLE_PGO := 1
|
2007-03-22 10:30:00 -07:00
|
|
|
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
|
|
|
|
|
2013-01-30 15:32:44 -08:00
|
|
|
CSRCS = \
|
|
|
|
nsErrorAssertsC.c \
|
|
|
|
$(NULL)
|
|
|
|
|
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
|
|
|
|
endif
|
2011-12-15 11:48:38 -08:00
|
|
|
|
|
|
|
endif #if OS_ARCH == WINNT
|
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 \
|
2012-08-02 01:55:58 -07:00
|
|
|
ErrorList.h \
|
2013-01-04 19:55:22 -08:00
|
|
|
ErrorListCxxDefines.h \
|
|
|
|
ErrorListCDefines.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
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
|
|
|
# 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)
|
2012-08-02 01:55:58 -07:00
|
|
|
|
2013-01-04 19:55:22 -08:00
|
|
|
# We generate ErrorListCxxDefines.h from ErrorList.h using regex. The -n option
|
2012-08-02 01:55:58 -07:00
|
|
|
# suppresses printing the pattern space, and the p at the end prints it anyway,
|
|
|
|
# so we don't print lines that don't match the pattern to start with.
|
2013-01-04 19:55:22 -08:00
|
|
|
ErrorListCxxDefines.h: ErrorList.h Makefile
|
2012-08-02 01:55:58 -07:00
|
|
|
sed -n 's/.*ERROR(\([A-Z_0-9]*\).*/#define \1 nsresult::\1/p' < $< > $@
|
|
|
|
|
2013-01-04 19:55:22 -08:00
|
|
|
ErrorListCDefines.h: ErrorList.h Makefile
|
|
|
|
sed 's/.*ERROR(\([A-Z_0-9]*\),\( *\)\(.*\))[^)]*/#define \1 \2((nsresult)(\3))/' < $< > $@
|
|
|
|
|
|
|
|
GARBAGE += \
|
|
|
|
ErrorListCxxDefines.h \
|
|
|
|
ErrorListCDefines.h \
|
|
|
|
$(NULL)
|