blob: ae1585ca284ec37902e77783b0f0a8c1d162bb7c (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
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
# Grr, damn gentoo has a dodgy header layout
# http://bugs.gentoo.org/show_bug.cgi?id=100804
mozilla_include_subdirs += find pref
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 = \
$(GECKO_CFLAGS) \
$(DEPENDENCIES_CFLAGS) \
$(AM_CXXFLAGS)
|