update emoji autocorrect entries from po-files
[LibreOffice.git] / sw / ooxmlexport_setup.mk
bloba3a2182cd9c49a2e41617572c61f9eb231a836e3
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 dbaccess/util/dba \
34 drawinglayer/drawinglayer \
35 embeddedobj/util/embobj \
36 filter/source/config/cache/filterconfig1 \
37 filter/source/odfflatxml/odfflatxml \
38 filter/source/xmlfilterdetect/xmlfd \
39 filter/source/xmlfilteradaptor/xmlfa \
40 forms/util/frm \
41 framework/util/fwk \
42 i18npool/util/i18npool \
43 linguistic/source/lng \
44 oox/util/oox \
45 package/source/xstor/xstor \
46 package/util/package2 \
47 sax/source/expatwrap/expwrap \
48 sw/util/sw \
49 sw/util/swd \
50 sw/util/msword \
51 sfx2/util/sfx \
52 starmath/util/sm \
53 svl/source/fsstor/fsstorage \
54 svl/util/svl \
55 svtools/util/svt \
56 svx/util/svx \
57 svx/util/svxcore \
58 toolkit/util/tk \
59 ucb/source/core/ucb1 \
60 ucb/source/ucp/file/ucpfile1 \
61 unotools/util/utl \
62 unoxml/source/service/unoxml \
63 uui/util/uui \
64 writerfilter/util/writerfilter \
65 xmloff/util/xo
66 endef
68 # template for ooxmlexport tests (there are several so that they can be run in parallel)
69 define sw_ooxmlexport_test
71 $(eval $(call gb_CppunitTest_CppunitTest,sw_ooxmlexport$(1)))
73 $(eval $(call gb_CppunitTest_add_exception_objects,sw_ooxmlexport$(1), \
74 sw/qa/extras/ooxmlexport/ooxmlexport$(1) \
77 $(eval $(call gb_CppunitTest_use_libraries,sw_ooxmlexport$(1), \
78 $(sw_ooxmlexport_libraries) \
81 $(eval $(call gb_CppunitTest_use_externals,sw_ooxmlexport$(1),\
82 boost_headers \
83 libxml2 \
86 $(eval $(call gb_CppunitTest_set_include,sw_ooxmlexport$(1),\
87 -I$(SRCDIR)/sw/inc \
88 -I$(SRCDIR)/sw/source/core/inc \
89 -I$(SRCDIR)/sw/qa/extras/inc \
90 $$(INCLUDE) \
93 $(eval $(call gb_CppunitTest_use_api,sw_ooxmlexport$(1),\
94 offapi \
95 udkapi \
98 $(eval $(call gb_CppunitTest_use_ure,sw_ooxmlexport$(1)))
99 $(eval $(call gb_CppunitTest_use_vcl,sw_ooxmlexport$(1)))
101 $(eval $(call gb_CppunitTest_use_components,sw_ooxmlexport$(1),\
102 $(sw_ooxmlexport_components) \
103 filter/source/storagefilterdetect/storagefd \
106 $(eval $(call gb_CppunitTest_use_configuration,sw_ooxmlexport$(1)))
108 $(eval $(call gb_CppunitTest_use_packages,sw_ooxmlexport$(1),\
109 oox_customshapes \
110 oox_generated \
113 $(call gb_CppunitTest_get_target,sw_ooxmlexport$(1)) : $(call gb_Library_get_target,iti)
115 endef
117 # vim: set noet sw=4 ts=4: