Remove include stdio (part1)
[LibreOffice.git] / sw / ooxmlexport_setup.mk
blob5a0cc3b2ef2073715d1f98e64ac05f125b329acb
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2 #*************************************************************************
4 # This file is part of the LibreOffice project.
6 # This Source Code Form is subject to the terms of the Mozilla Public
7 # License, v. 2.0. If a copy of the MPL was not distributed with this
8 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #*************************************************************************
12 define sw_ooxmlexport_libraries
13 comphelper \
14 cppu \
15 cppuhelper \
16 sal \
17 sw \
18 test \
19 tl \
20 unotest \
21 utl \
22 vcl \
23 $(gb_UWINAPI)
24 endef
26 define sw_ooxmlexport_components
27 basic/util/sb \
28 canvas/source/factory/canvasfactory \
29 chart2/source/chartcore \
30 chart2/source/controller/chartcontroller \
31 comphelper/util/comphelp \
32 configmgr/source/configmgr \
33 drawinglayer/drawinglayer \
34 embeddedobj/util/embobj \
35 filter/source/config/cache/filterconfig1 \
36 filter/source/odfflatxml/odfflatxml \
37 filter/source/xmlfilterdetect/xmlfd \
38 filter/source/xmlfilteradaptor/xmlfa \
39 forms/util/frm \
40 framework/util/fwk \
41 i18npool/util/i18npool \
42 linguistic/source/lng \
43 oox/util/oox \
44 package/source/xstor/xstor \
45 package/util/package2 \
46 sax/source/expatwrap/expwrap \
47 sw/util/sw \
48 sw/util/swd \
49 sw/util/msword \
50 sfx2/util/sfx \
51 starmath/util/sm \
52 svl/source/fsstor/fsstorage \
53 svl/util/svl \
54 svtools/util/svt \
55 svx/util/svx \
56 svx/util/svxcore \
57 toolkit/util/tk \
58 ucb/source/core/ucb1 \
59 ucb/source/ucp/file/ucpfile1 \
60 unotools/util/utl \
61 unoxml/source/service/unoxml \
62 uui/util/uui \
63 writerfilter/util/writerfilter \
64 xmloff/util/xo
65 endef
67 # template for ooxmlexport tests (there are several so that they can be run in parallel)
68 define sw_ooxmlexport_test
70 $(eval $(call gb_CppunitTest_CppunitTest,sw_ooxmlexport$(1)))
72 $(eval $(call gb_CppunitTest_add_exception_objects,sw_ooxmlexport$(1), \
73 sw/qa/extras/ooxmlexport/ooxmlexport$(1) \
76 $(eval $(call gb_CppunitTest_use_libraries,sw_ooxmlexport$(1), \
77 $(sw_ooxmlexport_libraries) \
80 $(eval $(call gb_CppunitTest_use_externals,sw_ooxmlexport$(1),\
81 boost_headers \
82 libxml2 \
85 $(eval $(call gb_CppunitTest_set_include,sw_ooxmlexport$(1),\
86 -I$(SRCDIR)/sw/inc \
87 -I$(SRCDIR)/sw/source/core/inc \
88 -I$(SRCDIR)/sw/qa/extras/inc \
89 $$(INCLUDE) \
92 $(eval $(call gb_CppunitTest_use_api,sw_ooxmlexport$(1),\
93 offapi \
94 udkapi \
97 $(eval $(call gb_CppunitTest_use_ure,sw_ooxmlexport$(1)))
98 $(eval $(call gb_CppunitTest_use_vcl,sw_ooxmlexport$(1)))
100 $(eval $(call gb_CppunitTest_use_components,sw_ooxmlexport$(1),\
101 $(sw_ooxmlexport_components) \
102 filter/source/storagefilterdetect/storagefd \
105 $(eval $(call gb_CppunitTest_use_configuration,sw_ooxmlexport$(1)))
107 $(eval $(call gb_CppunitTest_use_packages,sw_ooxmlexport$(1),\
108 oox_customshapes \
109 oox_generated \
112 $(call gb_CppunitTest_get_target,sw_ooxmlexport$(1)) : $(call gb_Library_get_target,iti)
114 endef
116 # vim: set noet sw=4 ts=4: