blob: 385a39b817d46a8455e58d56babfafff32ca0e79 (
plain) (
tree)
|
|
noinst_LTLIBRARIES = libephymozillaembed.la
libephymozillaembed_la_SOURCES = \
ContentHandler.cpp \
ContentHandler.h \
EphyContentPolicy.cpp \
EphyContentPolicy.h \
EphyHeaderSniffer.cpp \
EphyHeaderSniffer.h \
EphyBrowser.cpp \
EphyBrowser.h \
EphyFind.cpp \
EphyFind.h \
EphyHistoryListener.cpp \
EphyHistoryListener.h \
EphySidebar.cpp \
EphySidebar.h \
EphySingle.cpp \
EphySingle.h \
EphyUtils.cpp \
EphyUtils.h \
EventContext.cpp \
EventContext.h \
GlobalHistory.cpp \
GlobalHistory.h \
MozDownload.cpp \
MozDownload.h \
MozillaPrivate.cpp \
MozillaPrivate.h \
MozRegisterComponents.cpp \
MozRegisterComponents.h \
PrintingPromptService.cpp \
PrintingPromptService.h \
mozilla-download.cpp \
mozilla-download.h \
mozilla-embed.cpp \
mozilla-embed.h \
mozilla-embed-event.cpp \
mozilla-embed-event.h \
mozilla-embed-find.cpp \
mozilla-embed-find.h \
mozilla-embed-persist.cpp \
mozilla-embed-persist.h \
mozilla-embed-single.cpp \
mozilla-embed-single.h \
mozilla-notifiers.cpp \
mozilla-notifiers.h
if ENABLE_FILEPICKER
libephymozillaembed_la_SOURCES += \
FilePicker.cpp \
FilePicker.h
endif
if HAVE_MOZILLA_PSM
libephymozillaembed_la_SOURCES += \
GtkNSSClientAuthDialogs.cpp \
GtkNSSClientAuthDialogs.h \
GtkNSSDialogs.cpp \
GtkNSSDialogs.h \
GtkNSSKeyPairDialogs.cpp \
GtkNSSKeyPairDialogs.h \
GtkNSSSecurityWarningDialogs.cpp\
GtkNSSSecurityWarningDialogs.h
endif
if HAVE_GECKO_1_8
libephymozillaembed_la_SOURCES += \
EphyAboutModule.cpp \
EphyAboutModule.h
endif
mozilla_include_subdirs = \
caps \
chardet \
commandhandler \
content \
cookie \
docshell \
dom \
exthandler \
fastfind \
helperAppDlg \
gfx \
history \
js \
layout \
locale \
mimetype \
necko \
nkcache \
passwordmgr \
pipboot \
pipnss \
shistory \
sidebar \
uriloader \
uconv \
wallet \
webbrowserpersist \
webbrwsr \
widget \
windowwatcher \
xmlextras \
xpcom \
xpconnect
libephymozillaembed_la_CPPFLAGS = \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/embed \
-I$(top_srcdir) \
-I$(MOZILLA_INCLUDE_ROOT) \
$(addprefix -I$(MOZILLA_INCLUDE_ROOT)/,$(mozilla_include_subdirs)) \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-DMOZILLA_HOME=\"$(MOZILLA_HOME)\" \
-DMOZILLA_PREFIX=\"$(MOZILLA_PREFIX)\" \
-DALLOW_PRIVATE_API \
$(AM_CPPFLAGS)
libephymozillaembed_la_CXXFLAGS = \
$(MOZILLA_COMPONENT_CFLAGS) \
$(EPIPHANY_DEPENDENCY_CFLAGS) \
$(AM_CXXFLAGS)
|