2013-12-17 10:44:59 +01:00
|
|
|
# -*- 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,services))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,services, \
|
|
|
|
postprocess/qa/services \
|
|
|
|
))
|
|
|
|
|
2013-12-18 07:24:06 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_externals,services, \
|
|
|
|
boost_headers \
|
|
|
|
))
|
|
|
|
|
2013-12-17 10:44:59 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,services, \
|
|
|
|
cppu \
|
2015-02-12 16:00:17 +01:00
|
|
|
cppuhelper \
|
2013-12-17 10:44:59 +01:00
|
|
|
sal \
|
|
|
|
test \
|
2016-07-12 08:21:27 +02:00
|
|
|
unotest \
|
2014-06-12 12:18:59 +02:00
|
|
|
vcl \
|
2013-12-17 10:44:59 +01:00
|
|
|
$(gb_UWINAPI) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,services))
|
2015-02-12 16:00:17 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_api,services,oovbaapi))
|
2013-12-17 10:44:59 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,services))
|
2014-06-04 08:45:54 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_vcl,services))
|
2013-12-17 10:44:59 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,services,services))
|
2013-12-19 22:46:34 +01:00
|
|
|
ifneq ($(DISABLE_PYTHON),TRUE)
|
2014-08-02 16:06:44 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_python_ure,services))
|
|
|
|
|
2013-12-19 22:46:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,services,pyuno))
|
|
|
|
endif
|
2013-12-17 10:44:59 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,services))
|
|
|
|
|
2013-12-19 22:46:34 +01:00
|
|
|
ifeq ($(ENABLE_JAVA),TRUE)
|
2014-08-02 15:12:15 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_java_ure,services))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_jars,services,\
|
2016-01-19 10:42:34 +01:00
|
|
|
ScriptProviderForJava \
|
2014-08-02 15:12:15 +02:00
|
|
|
smoketest \
|
2013-12-19 22:46:34 +01:00
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2014-08-02 16:06:44 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_packages,services,\
|
2014-08-02 16:42:10 +02:00
|
|
|
autotextshare_en-US \
|
2014-08-02 16:06:44 +02:00
|
|
|
instsetoo_native_setup \
|
|
|
|
))
|
|
|
|
|
2013-12-17 10:44:59 +01:00
|
|
|
# vim: set noet sw=4 ts=4:
|