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
|
|
|
DEPTH=../../..
|
|
|
|
topsrcdir=@top_srcdir@
|
|
|
|
srcdir=@srcdir@
|
|
|
|
VPATH=@srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = browsercomps
|
|
|
|
LIBRARY_NAME = browsercomps
|
|
|
|
SHORT_LIBNAME = brwsrcmp
|
|
|
|
IS_COMPONENT = 1
|
|
|
|
MODULE_NAME = nsBrowserCompsModule
|
|
|
|
FORCE_SHARED_LIB = 1
|
|
|
|
|
2007-04-23 12:25:39 -07:00
|
|
|
USE_STATIC_LIBS = 1
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
EXPORTS = nsBrowserCompsCID.h
|
|
|
|
|
|
|
|
CPPSRCS = nsModule.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2012-03-30 04:33:06 -07:00
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,ole32 shell32 shlwapi)
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_INCLUDES = \
|
|
|
|
-I$(srcdir)/../shell/src \
|
|
|
|
-I$(srcdir)/../feeds/src \
|
2009-02-22 06:51:52 -08:00
|
|
|
-I$(srcdir)/../privatebrowsing/src \
|
2009-08-19 23:24:10 -07:00
|
|
|
-I$(srcdir)/../about \
|
2009-11-06 23:19:44 -08:00
|
|
|
-I$(srcdir)/../dirprovider \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,version)
|
|
|
|
endif
|
|
|
|
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
|
|
../feeds/src/$(LIB_PREFIX)browser_feeds_s.$(LIB_SUFFIX) \
|
2009-02-22 06:51:52 -08:00
|
|
|
../privatebrowsing/src/$(LIB_PREFIX)privatebrowsing_s.$(LIB_SUFFIX) \
|
2009-08-19 23:24:10 -07:00
|
|
|
../about/$(LIB_PREFIX)browserabout_s.$(LIB_SUFFIX) \
|
2009-11-06 23:19:44 -08:00
|
|
|
../dirprovider/$(LIB_PREFIX)browserdir_s.$(LIB_SUFFIX) \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifneq (,$(filter windows cocoa gtk2, $(MOZ_WIDGET_TOOLKIT)))
|
2009-02-11 18:24:53 -08:00
|
|
|
SHARED_LIBRARY_LIBS += ../shell/src/$(LIB_PREFIX)shellservice_s.$(LIB_SUFFIX)
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2009-05-06 13:02:05 -07:00
|
|
|
EXTRA_DSO_LDOPTS += \
|
2011-12-10 15:01:33 -08:00
|
|
|
$(call EXPAND_LIBNAME_PATH,unicharutil_external_s,$(LIBXUL_DIST)/lib) \
|
2012-05-21 14:31:03 -07:00
|
|
|
$(XPCOM_STATICRUNTIME_GLUE_LDOPTS) \
|
2009-05-06 13:02:05 -07:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-03-21 12:20:47 -07:00
|
|
|
ifdef JS_SHARED_LIBRARY
|
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_JS_LIBS)
|
|
|
|
endif
|
|
|
|
|
2011-12-10 15:01:33 -08:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../migration/src
|
|
|
|
SHARED_LIBRARY_LIBS += ../migration/src/$(LIB_PREFIX)migration_s.$(LIB_SUFFIX)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
# Mac: Need to link with CoreFoundation for Mac Migrators (PList reading code)
|
|
|
|
# GTK2: Need to link with glib for GNOME shell service
|
2009-09-18 19:59:53 -07:00
|
|
|
ifneq (,$(filter cocoa gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
2007-03-22 10:30:00 -07:00
|
|
|
EXTRA_DSO_LDOPTS += \
|
|
|
|
$(TK_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
2011-12-28 04:55:58 -08:00
|
|
|
|
|
|
|
# Ensure that we don't embed a manifest referencing the CRT.
|
|
|
|
EMBED_MANIFEST_AT =
|