4f25551df3
I had to rename some .cxx files to follow the same patterns. The renaming cause clang-format to be triggered for those files CppunitTest_sc_functionlistobj fails with xindexaccess.cxx:26:Assertion Test name: sc_apitest::ScFunctionListObj::testGetCount equality assertion failed - Expected: 395 - Actual : 508 if it doesn't use gb_CppunitTest_use_components Change-Id: I7c929512bbf05293118bc54b343a59c8bbee5538 Change-Id: I21971773f1e2d4bc7a6f33e4c392b20abf8d54de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142387 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
# -*- 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_CppunitTest_CppunitTest,sc_new_cond_format_api))
|
|
|
|
$(eval $(call gb_CppunitTest_use_common_precompiled_header,sc_new_cond_format_api))
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,sc_new_cond_format_api, \
|
|
sc/qa/extras/new_cond_format \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_external,sc_new_cond_format_api,boost_headers))
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,sc_new_cond_format_api, \
|
|
basegfx \
|
|
comphelper \
|
|
cppu \
|
|
cppuhelper \
|
|
drawinglayer \
|
|
drawinglayercore \
|
|
editeng \
|
|
for \
|
|
forui \
|
|
i18nlangtag \
|
|
msfilter \
|
|
oox \
|
|
sal \
|
|
salhelper \
|
|
sax \
|
|
sb \
|
|
sfx \
|
|
sot \
|
|
subsequenttest \
|
|
svl \
|
|
svt \
|
|
svx \
|
|
svxcore \
|
|
test \
|
|
tk \
|
|
tl \
|
|
ucbhelper \
|
|
unotest \
|
|
utl \
|
|
$(call gb_Helper_optional,SCRIPTING, \
|
|
vbahelper) \
|
|
vcl \
|
|
xo \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_set_include,sc_new_cond_format_api,\
|
|
-I$(SRCDIR)/sc/source/ui/inc \
|
|
-I$(SRCDIR)/sc/inc \
|
|
$$(INCLUDE) \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,sc_new_cond_format_api))
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,sc_new_cond_format_api))
|
|
$(eval $(call gb_CppunitTest_use_vcl,sc_new_cond_format_api))
|
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,sc_new_cond_format_api,services))
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,sc_new_cond_format_api))
|
|
|
|
# vim: set noet sw=4 ts=4:
|