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
128
129
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
#
# This file is part of the LibreOffice project.
#
# 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/.
#
$(eval $(call gb_Executable_Executable,wmffuzzer))
$(eval $(call gb_Executable_use_api,wmffuzzer,\
offapi \
udkapi \
))
$(eval $(call gb_Executable_use_externals,wmffuzzer,\
boost_headers \
curl \
harfbuzz \
graphite \
cairo \
fontconfig \
freetype \
icui18n \
icuuc \
icudata \
lcms2 \
librdf \
libxslt \
libxml2 \
jpeg \
clew \
openssl \
expat \
mythes \
hyphen \
hunspell \
zlib \
))
$(eval $(call gb_Executable_set_include,wmffuzzer,\
$$(INCLUDE) \
-I$(SRCDIR)/vcl/inc \
))
$(eval $(call gb_Executable_use_libraries,wmffuzzer,\
basctl \
merged \
cui \
chartcontroller \
chartcore \
sm \
gie \
oox \
reflection \
odfflatxml \
invocadapt \
bootstrap \
introspection \
stocservices \
lnth \
hyphen \
i18nsearch \
embobj \
evtatt \
unordf \
ucphier1 \
ucptdoc1 \
srtrs1 \
storagefd \
mtfrenderer \
canvasfactory \
vclcanvas \
xof \
xmlfa \
xmlfd \
cppu \
cppuhelper \
comphelper \
i18nlangtag \
xmlreader \
unoidl \
reg \
store \
expwrap \
gcc3_uno \
salhelper \
sal \
))
$(eval $(call gb_Executable_use_static_libraries,wmffuzzer,\
findsofficepath \
ulingu \
))
$(eval $(call gb_Executable_add_exception_objects,wmffuzzer,\
vcl/workben/wmffuzzer \
vcl/workben/localestub/localestub \
vcl/workben/localestub/localedata_en_AU \
vcl/workben/localestub/localedata_en_BW \
vcl/workben/localestub/localedata_en_BZ \
vcl/workben/localestub/localedata_en_CA \
vcl/workben/localestub/localedata_en_GB \
vcl/workben/localestub/localedata_en_GH \
vcl/workben/localestub/localedata_en_GM \
vcl/workben/localestub/localedata_en_IE \
vcl/workben/localestub/localedata_en_IN \
vcl/workben/localestub/localedata_en_JM \
vcl/workben/localestub/localedata_en_MW \
vcl/workben/localestub/localedata_en_NA \
vcl/workben/localestub/localedata_en_NZ \
vcl/workben/localestub/localedata_en_PH \
vcl/workben/localestub/localedata_en_TT \
vcl/workben/localestub/localedata_en_US \
vcl/workben/localestub/localedata_en_ZA \
vcl/workben/localestub/localedata_en_ZW \
))
$(eval $(call gb_Executable_add_generated_exception_objects,wmffuzzer,\
CustomTarget/vcl/workben/native-code \
))
$(eval $(call gb_Executable_add_libs,wmffuzzer,\
-lFuzzingEngine \
))
# vim: set noet sw=4 ts=4:
|