blob: 3963895753de7274f214171f94367a8a04372450 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
NULL =
noinst_LTLIBRARIES = libephycomponents.la
libephycomponents_la_SOURCES = \
ContentHandler.cpp \
ContentHandler.h \
EphyAboutModule.cpp \
EphyAboutModule.h \
EphyContentPolicy.cpp \
EphyContentPolicy.h \
EphyHistoryListener.cpp \
EphyHistoryListener.h \
EphyRedirectChannel.cpp \
EphyRedirectChannel.h \
EphySidebar.cpp \
EphySidebar.h \
GeckoCookiePromptService.cpp \
GeckoCookiePromptService.h \
GeckoFormSigningDialog.cpp \
GeckoFormSigningDialog.h \
GeckoPrintService.cpp \
GeckoPrintService.h \
GeckoPrintSession.cpp \
GeckoPrintSession.h \
GeckoPromptService.cpp \
GeckoPromptService.h \
GlobalHistory.cpp \
GlobalHistory.h \
MozDownload.cpp \
MozDownload.h \
MozRegisterComponents.cpp \
MozRegisterComponents.h \
$(NULL)
# if ENABLE_FILEPICKER
# libephycomponents_la_SOURCES += \
# FilePicker.cpp \
# FilePicker.h
# endif
# NOTE & FIXME: Most of these are GPL not LGPL
# if HAVE_MOZILLA_PSM
libephycomponents_la_SOURCES += \
GtkNSSClientAuthDialogs.cpp \
GtkNSSClientAuthDialogs.h \
GtkNSSDialogs.cpp \
GtkNSSDialogs.h \
GtkNSSKeyPairDialogs.cpp \
GtkNSSKeyPairDialogs.h \
GtkNSSSecurityWarningDialogs.cpp\
GtkNSSSecurityWarningDialogs.h
# endif
# if ENABLE_SPELLCHECKER
libephycomponents_la_SOURCES += \
GeckoSpellCheckEngine.cpp \
GeckoSpellCheckEngine.h
# endif
libephycomponents_la_CPPFLAGS = \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/embed \
-I$(top_srcdir) \
-I$(top_srcdir)/embed/xulrunner/src \
-I$(top_srcdir)/embed/xulrunner/embed \
-I$(top_srcdir)/embed/xulrunner/utils \
-I$(top_builddir)/embed/xulrunner/src \
-I$(top_builddir)/embed/xulrunner/embed \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-DPLUGINDIR=\"$(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins\" \
-DMOZILLA_HOME=\"$(LIBXUL_LIBDIR)\" \
-DMOZILLA_PREFIX=\"$(LIBXUL_PREFIX)\" \
-DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \
-DUA_VERSION=\"$(EPIPHANY_UA_VERSION)\" \
-DALLOW_PRIVATE_API \
$(LIBXUL_CXXCPPFLAGS) \
$(LIBXUL_INCLUDES) \
$(AM_CPPFLAGS)
libephycomponents_la_CXXFLAGS = \
$(LIBXUL_CXXFLAGS) \
$(GTK_CFLAGS) \
$(GTKPRINT_CFLAGS) \
$(GNOMEVFS_CFLAGS) \
$(GCONF_CFLAGS) \
$(GLADE_CFLAGS) \
$(GNOME_CFLAGS) \
$(AM_CXXFLAGS)
libephycomponents_la_LDFLAGS = \
$(AM_LDFLAGS)
libephycomponents_la_LIBADD = \
$(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \
$(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \
$(LIBXUL_LIBS)
CLEANFILES =
$(NULL)
EXTRA_DIST = \
$(NULL)
|