2007-03-22 10:30:00 -07:00
|
|
|
#
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2011-04-26 14:38:43 -07:00
|
|
|
DEPTH = ../../..
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = plugin
|
|
|
|
LIBRARY_NAME = gkplugin
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
IS_COMPONENT = 1
|
|
|
|
MODULE_NAME = nsPluginModule
|
|
|
|
GRE_MODULE = 1
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
|
2010-04-13 09:10:00 -07:00
|
|
|
EXPORTS_NAMESPACES = mozilla
|
|
|
|
|
2011-04-26 14:38:43 -07:00
|
|
|
XPIDLSRCS = \
|
|
|
|
nsIHTTPHeaderListener.idl \
|
|
|
|
nsIPluginDocument.idl \
|
|
|
|
nsIPluginHost.idl \
|
|
|
|
nsIPluginInputStream.idl \
|
|
|
|
nsIPluginInstance.idl \
|
|
|
|
nsIPluginInstanceOwner.idl \
|
|
|
|
nsIPluginStreamInfo.idl \
|
|
|
|
nsIPluginStreamListener.idl \
|
|
|
|
nsIPluginTag.idl \
|
|
|
|
nsIPluginTagInfo.idl \
|
|
|
|
nspluginroot.idl \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXPORTS = \
|
|
|
|
npapi.h \
|
|
|
|
npfunctions.h \
|
|
|
|
nptypes.h \
|
|
|
|
npruntime.h \
|
|
|
|
nsPluginLogging.h \
|
|
|
|
nsPluginError.h \
|
|
|
|
nsPluginNativeWindow.h \
|
|
|
|
nsPluginsCID.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-04-13 09:10:00 -07:00
|
|
|
EXPORTS_mozilla = \
|
|
|
|
PluginPRLibrary.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS = \
|
2008-09-15 05:45:01 -07:00
|
|
|
nsNPAPIPlugin.cpp \
|
|
|
|
nsNPAPIPluginInstance.cpp \
|
2010-07-13 11:42:03 -07:00
|
|
|
nsNPAPIPluginStreamListener.cpp \
|
2010-07-13 13:48:00 -07:00
|
|
|
nsPluginStreamListenerPeer.cpp \
|
2009-07-01 22:48:08 -07:00
|
|
|
nsPluginHost.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPluginModule.cpp \
|
|
|
|
nsJSNPRuntime.cpp \
|
2009-12-15 14:47:22 -08:00
|
|
|
nsPluginTags.cpp \
|
2010-04-13 09:10:00 -07:00
|
|
|
PluginPRLibrary.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2011-05-08 10:45:56 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsPluginsDirWin.cpp
|
|
|
|
CPPSRCS += nsPluginNativeWindowWin.cpp
|
2007-07-20 13:34:51 -07:00
|
|
|
CPPSRCS += nsPluginDirServiceProvider.cpp
|
2010-11-09 18:02:09 -08:00
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/xpcom/base
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
CPPSRCS += nsPluginsDirOS2.cpp
|
|
|
|
CPPSRCS += nsPluginNativeWindowOS2.cpp
|
|
|
|
else
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsPluginsDirDarwin.cpp
|
|
|
|
CPPSRCS += nsPluginNativeWindow.cpp
|
|
|
|
else
|
|
|
|
CPPSRCS += nsPluginsDirUnix.cpp
|
2010-04-20 11:49:34 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsPluginNativeWindowGtk2.cpp
|
|
|
|
else
|
2010-04-20 11:49:34 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
|
|
|
CPPSRCS += nsPluginNativeWindowQt.cpp
|
|
|
|
else
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsPluginNativeWindow.cpp
|
|
|
|
endif
|
|
|
|
endif
|
2010-04-20 11:49:34 -07:00
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-02-11 17:56:11 -08:00
|
|
|
LOCAL_INCLUDES = \
|
|
|
|
-I$(topsrcdir)/xpcom/base/ \
|
|
|
|
$(NULL)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifneq (,$(filter WINNT Darwin,$(OS_ARCH)))
|
|
|
|
EXTRA_DSO_LIBS += gkgfx
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
|
|
$(LIBS_DIR) \
|
|
|
|
$(EXTRA_DSO_LIBS) \
|
|
|
|
$(MOZ_NECKO_UTIL_LIBS) \
|
|
|
|
$(MOZ_UNICHARUTIL_LIBS) \
|
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
|
|
|
$(MOZ_JS_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
EXTRA_DSO_LDOPTS += $(TK_LIBS)
|
|
|
|
endif
|
|
|
|
|
2009-06-30 11:51:05 -07:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,version)
|
|
|
|
endif
|
|
|
|
|
2010-01-27 21:22:41 -08:00
|
|
|
CXXFLAGS += $(TK_CFLAGS)
|
|
|
|
EXTRA_DSO_LDOPTS += $(TK_LIBS)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef MOZ_ENABLE_GTK2
|
2010-01-27 21:22:41 -08:00
|
|
|
EXTRA_DSO_LDOPTS += -lgtkxtbin $(XLDFLAGS) $(XT_LIBS) $(XLIBS) $(XEXT_LIBS) $(XCOMPOSITE_LIBS)
|
2007-03-22 10:30:00 -07:00
|
|
|
endif #MOZ_ENABLE_GTK2
|
2010-01-27 21:22:41 -08:00
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
|
|
|
EXTRA_DSO_LDOPTS += $(XEXT_LIBS) $(XCOMPOSITE_LIBS)
|
|
|
|
endif
|
|
|
|
|