diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-18 22:32:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-18 22:32:12 +0200 |
commit | ecaadbf78794174c5f744b4982546901cb7fe8e8 (patch) | |
tree | 481a739c92253877ee155416e808c86ed1fe2461 /testtools | |
parent | dba4e216c9d866699204af121f575829e64768d1 (diff) |
There are two distinct InternalUnoApis in testtools
Change-Id: Ie9663bfa522c0d2ee4f996c2f7d744aaf0600623
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/CustomTarget_bridgetest_javamaker.mk | 3 | ||||
-rw-r--r-- | testtools/InternalUnoApi_bridgetest.mk | 4 | ||||
-rw-r--r-- | testtools/InternalUnoApi_performance.mk | 25 | ||||
-rw-r--r-- | testtools/Module_testtools.mk | 1 |
4 files changed, 28 insertions, 5 deletions
diff --git a/testtools/CustomTarget_bridgetest_javamaker.mk b/testtools/CustomTarget_bridgetest_javamaker.mk index 743529600d8c..830290038c61 100644 --- a/testtools/CustomTarget_bridgetest_javamaker.mk +++ b/testtools/CustomTarget_bridgetest_javamaker.mk @@ -15,12 +15,13 @@ $(call gb_CustomTarget_get_target,testtools/bridgetest_javamaker) : $(testtools_ $(testtools_JAVADIR)/done : \ $(call gb_UnoApiTarget_get_target,bridgetest) \ + $(call gb_UnoApiTarget_get_target,performance) \ $(call gb_UnoApiTarget_get_target,udkapi) \ $(call gb_Executable_get_runtime_dependencies,javamaker) \ | $(testtools_JAVADIR)/.dir $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),JVM,1) $(call gb_Helper_abbreviate_dirs, \ rm -r $(testtools_JAVADIR) && \ - $(call gb_Helper_execute,javamaker -nD -O$(testtools_JAVADIR) -X$(call gb_UnoApiTarget_get_target,udkapi) $<) && touch $@) + $(call gb_Helper_execute,javamaker -nD -O$(testtools_JAVADIR) -X$(call gb_UnoApiTarget_get_target,udkapi) $(call gb_UnoApiTarget_get_target,bridgetest) $(call gb_UnoApiTarget_get_target,performance)) && touch $@) # vim:set shiftwidth=4 tabstop=4 noexpandtab: diff --git a/testtools/InternalUnoApi_bridgetest.mk b/testtools/InternalUnoApi_bridgetest.mk index 0e095bf2765b..dfe8344337ba 100644 --- a/testtools/InternalUnoApi_bridgetest.mk +++ b/testtools/InternalUnoApi_bridgetest.mk @@ -22,8 +22,4 @@ $(eval $(call gb_InternalUnoApi_add_idlfiles,bridgetest,testtools/source/bridget bridgetest \ )) -$(eval $(call gb_InternalUnoApi_add_idlfiles,bridgetest,testtools/source/bridgetest/idl/com/sun/star/test/performance,\ - XPerformanceTest \ -)) - # vim:set noet sw=4 ts=4: diff --git a/testtools/InternalUnoApi_performance.mk b/testtools/InternalUnoApi_performance.mk new file mode 100644 index 000000000000..978eb09d2e3c --- /dev/null +++ b/testtools/InternalUnoApi_performance.mk @@ -0,0 +1,25 @@ +# -*- 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_InternalUnoApi_InternalUnoApi,performance)) + +$(eval $(call gb_InternalUnoApi_use_api,performance,\ + udkapi \ +)) + +$(eval $(call gb_InternalUnoApi_set_include,performance,\ + -I$(SRCDIR)/udkapi \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_InternalUnoApi_add_idlfiles,performance,testtools/source/bridgetest/idl/com/sun/star/test/performance,\ + XPerformanceTest \ +)) + +# vim:set noet sw=4 ts=4: diff --git a/testtools/Module_testtools.mk b/testtools/Module_testtools.mk index 020040578e89..dd3501221c2a 100644 --- a/testtools/Module_testtools.mk +++ b/testtools/Module_testtools.mk @@ -14,6 +14,7 @@ ifneq ($(CROSS_COMPILING),YES) $(eval $(call gb_Module_add_targets,testtools,\ CustomTarget_bridgetest \ InternalUnoApi_bridgetest \ + InternalUnoApi_performance \ StaticLibrary_bridgetest \ Library_cppobj \ Library_bridgetest \ |