Fix typo
[LibreOffice.git] / chart2 / import_setup.mk
bloba63d314bfc346b64bf72c5c10ae286310e6edf27
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 # template for import tests
13 define chart2_import$(1)_test
15 $(eval $(call gb_CppunitTest_CppunitTest,chart2_import$(1)))
17 $(eval $(call gb_CppunitTest_use_externals,chart2_import$(1), \
18 boost_headers \
19 libxml2 \
22 $(eval $(call gb_CppunitTest_add_exception_objects,chart2_import$(1), \
23 chart2/qa/extras/chart2import$(1) \
26 $(eval $(call gb_CppunitTest_use_libraries,chart2_import$(1), \
27 $(call gb_Helper_optional,AVMEDIA,avmedia) \
28 basegfx \
29 comphelper \
30 cppu \
31 cppuhelper \
32 drawinglayer \
33 docmodel \
34 editeng \
35 for \
36 forui \
37 i18nlangtag \
38 msfilter \
39 oox \
40 sal \
41 salhelper \
42 sax \
43 sb \
44 sc \
45 sw \
46 sd \
47 sfx \
48 sot \
49 subsequenttest \
50 svl \
51 svt \
52 svx \
53 svxcore \
54 test \
55 tl \
56 tk \
57 ucbhelper \
58 unotest \
59 utl \
60 $(call gb_Helper_optional,SCRIPTING, \
61 vbahelper) \
62 vcl \
63 xo \
66 $(eval $(call gb_CppunitTest_set_include,chart2_import$(1),\
67 -I$(SRCDIR)/chart2/inc \
68 $$(INCLUDE) \
71 $(eval $(call gb_CppunitTest_use_sdk_api,chart2_import$(1)))
73 $(eval $(call gb_CppunitTest_use_ure,chart2_import$(1)))
74 $(eval $(call gb_CppunitTest_use_vcl,chart2_import$(1)))
76 $(eval $(call gb_CppunitTest_use_components,chart2_import$(1),\
77 basic/util/sb \
78 animations/source/animcore/animcore \
79 chart2/source/controller/chartcontroller \
80 chart2/source/chartcore \
81 comphelper/util/comphelp \
82 configmgr/source/configmgr \
83 dbaccess/util/dba \
84 embeddedobj/util/embobj \
85 emfio/emfio \
86 eventattacher/source/evtatt \
87 filter/source/config/cache/filterconfig1 \
88 filter/source/odfflatxml/odfflatxml \
89 filter/source/storagefilterdetect/storagefd \
90 filter/source/xmlfilteradaptor/xmlfa \
91 filter/source/xmlfilterdetect/xmlfd \
92 forms/util/frm \
93 framework/util/fwk \
94 i18npool/util/i18npool \
95 linguistic/source/lng \
96 oox/util/oox \
97 package/source/xstor/xstor \
98 package/util/package2 \
99 sax/source/expatwrap/expwrap \
100 sc/util/sc \
101 sc/util/scd \
102 sc/util/scfilt \
103 sw/util/sw \
104 sw/util/swd \
105 sw/util/msword \
106 sd/util/sd \
107 sd/util/sdd \
108 $(call gb_Helper_optional,SCRIPTING, \
109 sc/util/vbaobj) \
110 scaddins/source/analysis/analysis \
111 scaddins/source/datefunc/date \
112 scripting/source/basprov/basprov \
113 scripting/util/scriptframe \
114 sfx2/util/sfx \
115 sot/util/sot \
116 svl/source/fsstor/fsstorage \
117 svl/util/svl \
118 svtools/util/svt \
119 svx/util/svx \
120 svx/util/svxcore \
121 toolkit/util/tk \
122 vcl/vcl.common \
123 ucb/source/core/ucb1 \
124 ucb/source/ucp/file/ucpfile1 \
125 ucb/source/ucp/tdoc/ucptdoc1 \
126 unotools/util/utl \
127 unoxml/source/rdf/unordf \
128 unoxml/source/service/unoxml \
129 uui/util/uui \
130 writerfilter/util/writerfilter \
131 xmloff/util/xo \
132 xmlscript/util/xmlscript \
135 $(eval $(call gb_CppunitTest_use_uiconfigs,chart2_import$(1), \
136 modules/swriter \
139 $(eval $(call gb_CppunitTest_use_configuration,chart2_import$(1)))
141 $(call gb_CppunitTest_get_target,chart2_import$(1)): $(call gb_Package_get_target,postprocess_images)
143 endef
145 # vim: set noet sw=4 ts=4: