2012-05-21 15:12:37 +04: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/.
|
2001-02-07 06:09:15 +03:00
|
|
|
|
2012-08-04 22:26:44 +04:00
|
|
|
DEPTH = @DEPTH@
|
2001-02-07 06:09:15 +03:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = embedcomponents
|
|
|
|
LIBRARY_NAME = embedcomponents
|
2001-04-28 23:48:12 +04:00
|
|
|
EXPORT_LIBRARY = 1
|
2001-02-22 07:33:59 +03:00
|
|
|
SHORT_LIBNAME = embedcmp
|
2001-02-07 06:09:15 +03:00
|
|
|
IS_COMPONENT = 1
|
2001-06-21 00:21:49 +04:00
|
|
|
MODULE_NAME = embedcomponents
|
2002-12-28 04:15:07 +03:00
|
|
|
GRE_MODULE = 1
|
2004-12-15 07:07:01 +03:00
|
|
|
LIBXUL_LIBRARY = 1
|
2002-12-28 04:15:07 +03:00
|
|
|
|
2005-04-06 03:28:18 +04:00
|
|
|
CPPSRCS = nsEmbeddingModule.cpp
|
2001-02-07 06:09:15 +03:00
|
|
|
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
2006-02-14 20:02:21 +03:00
|
|
|
../windowwatcher/src/$(LIB_PREFIX)windowwatcher_s.$(LIB_SUFFIX) \
|
|
|
|
../appstartup/src/$(LIB_PREFIX)appstartupnotifier_s.$(LIB_SUFFIX) \
|
|
|
|
../find/src/$(LIB_PREFIX)find_s.$(LIB_SUFFIX) \
|
|
|
|
../webbrowserpersist/src/$(LIB_PREFIX)webbrowserpersist_s.$(LIB_SUFFIX) \
|
|
|
|
../commandhandler/src/$(LIB_PREFIX)commandhandler_s.$(LIB_SUFFIX) \
|
2001-02-07 06:09:15 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2003-04-11 04:56:27 +04:00
|
|
|
ifdef MOZ_XUL
|
2005-09-16 06:25:37 +04:00
|
|
|
ifdef NS_PRINTING
|
2005-04-29 17:33:49 +04:00
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-02-14 20:02:21 +03:00
|
|
|
../printingui/src/$(LIB_PREFIX)printingui_s.$(LIB_SUFFIX) \
|
2005-04-29 17:33:49 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2005-09-16 06:25:37 +04:00
|
|
|
endif
|
2003-04-11 04:56:27 +04:00
|
|
|
|
2001-02-07 06:09:15 +03:00
|
|
|
LOCAL_INCLUDES = \
|
|
|
|
-I$(srcdir)/../windowwatcher/src \
|
2001-03-20 00:57:57 +03:00
|
|
|
-I$(srcdir)/../appstartup/src \
|
2001-04-28 01:11:03 +04:00
|
|
|
-I$(srcdir)/../find/src \
|
2001-11-01 17:39:53 +03:00
|
|
|
-I$(srcdir)/../webbrowserpersist/src \
|
2002-02-02 10:48:06 +03:00
|
|
|
-I$(srcdir)/../commandhandler/src \
|
2001-02-07 06:09:15 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2007-02-08 22:23:25 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
2002-05-02 16:38:43 +04:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/os2
|
|
|
|
endif
|
|
|
|
|
2010-11-17 02:33:56 +03:00
|
|
|
ifdef MOZ_PDF_PRINTING
|
2002-05-07 16:03:37 +04:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/unixshared
|
2002-05-02 16:38:43 +04:00
|
|
|
endif
|
|
|
|
|
2007-02-08 22:23:25 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2002-05-02 16:38:43 +04:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/win
|
|
|
|
endif
|
|
|
|
|
2009-09-19 06:59:53 +04:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2002-05-02 16:38:43 +04:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../printingui/src/mac
|
|
|
|
endif
|
|
|
|
|
2001-02-07 06:09:15 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|