create these rdbs directly in scripting
Change-Id: I8a44de06f9a16308a5ff82ad77d059e5dde544f9
This commit is contained in:
@@ -412,36 +412,3 @@ $(MISC)/services.input : makefile.mk
|
|||||||
'<list>$(my_components:^"<filename>":+".component</filename>")</list>' \
|
'<list>$(my_components:^"<filename>":+".component</filename>")</list>' \
|
||||||
> $@
|
> $@
|
||||||
|
|
||||||
.IF "$(ENABLE_SCRIPTING_BEANSHELL)" == "YES"
|
|
||||||
ALLTAR : $(MISC)/scriptproviderforbeanshell.rdb
|
|
||||||
|
|
||||||
$(MISC)/scriptproviderforbeanshell.rdb .ERRREMOVE : \
|
|
||||||
$(SOLARENV)/bin/packcomponents.xslt \
|
|
||||||
$(MISC)/scriptproviderforbeanshell.input \
|
|
||||||
$(SOLARXMLDIR)/component/scripting/java/ScriptProviderForBeanShell.component
|
|
||||||
$(XSLTPROC) --nonet --stringparam prefix $(SOLARXMLDIR)/ -o $@ \
|
|
||||||
$(SOLARENV)/bin/packcomponents.xslt \
|
|
||||||
$(MISC)/scriptproviderforbeanshell.input
|
|
||||||
|
|
||||||
$(MISC)/scriptproviderforbeanshell.input : makefile.mk
|
|
||||||
echo \
|
|
||||||
'<list><filename>component/scripting/java/ScriptProviderForBeanShell.component</filename></list>' \
|
|
||||||
> $@
|
|
||||||
.END
|
|
||||||
|
|
||||||
.IF "$(ENABLE_SCRIPTING_JAVASCRIPT)" == "YES"
|
|
||||||
ALLTAR : $(MISC)/scriptproviderforjavascript.rdb
|
|
||||||
|
|
||||||
$(MISC)/scriptproviderforjavascript.rdb .ERRREMOVE : \
|
|
||||||
$(SOLARENV)/bin/packcomponents.xslt \
|
|
||||||
$(MISC)/scriptproviderforjavascript.input \
|
|
||||||
$(SOLARXMLDIR)/component/scripting/java/ScriptProviderForJavaScript.component
|
|
||||||
$(XSLTPROC) --nonet --stringparam prefix $(SOLARXMLDIR)/ -o $@ \
|
|
||||||
$(SOLARENV)/bin/packcomponents.xslt \
|
|
||||||
$(MISC)/scriptproviderforjavascript.input
|
|
||||||
|
|
||||||
$(MISC)/scriptproviderforjavascript.input : makefile.mk
|
|
||||||
echo \
|
|
||||||
'<list><filename>component/scripting/java/ScriptProviderForJavaScript.component</filename></list>' \
|
|
||||||
> $@
|
|
||||||
.END
|
|
||||||
|
@@ -36,11 +36,15 @@ $(eval $(call gb_Module_add_targets,scripting,\
|
|||||||
Jar_Highlight \
|
Jar_Highlight \
|
||||||
Jar_MemoryUsage \
|
Jar_MemoryUsage \
|
||||||
Jar_ScriptFramework \
|
Jar_ScriptFramework \
|
||||||
$(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\
|
$(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\
|
||||||
Jar_ScriptProviderForBeanShell) \
|
Jar_ScriptProviderForBeanShell \
|
||||||
|
Rdb_scriptproviderforbeanshell \
|
||||||
|
) \
|
||||||
Jar_ScriptProviderForJava \
|
Jar_ScriptProviderForJava \
|
||||||
$(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
|
$(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
|
||||||
Jar_ScriptProviderForJavaScript) \
|
Jar_ScriptProviderForJavaScript \
|
||||||
|
Rdb_scriptproviderforjavascript \
|
||||||
|
) \
|
||||||
Zip_ScriptsJava \
|
Zip_ScriptsJava \
|
||||||
) \
|
) \
|
||||||
$(if $(filter $(ENABLE_SCRIPTING_PYTHON),YES),\
|
$(if $(filter $(ENABLE_SCRIPTING_PYTHON),YES),\
|
||||||
|
16
scripting/Rdb_scriptproviderforbeanshell.mk
Normal file
16
scripting/Rdb_scriptproviderforbeanshell.mk
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# -*- 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_Rdb_Rdb,scriptproviderforbeanshell))
|
||||||
|
|
||||||
|
$(eval $(call gb_Rdb_add_components,scriptproviderforbeanshell,\
|
||||||
|
scripting/java/ScriptProviderForBeanShell \
|
||||||
|
))
|
||||||
|
|
||||||
|
# vim: set noet sw=4 ts=4:
|
16
scripting/Rdb_scriptproviderforjavascript.mk
Normal file
16
scripting/Rdb_scriptproviderforjavascript.mk
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# -*- 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_Rdb_Rdb,scriptproviderforjavascript))
|
||||||
|
|
||||||
|
$(eval $(call gb_Rdb_add_components,scriptproviderforjavascript,\
|
||||||
|
scripting/java/ScriptProviderForJavaScript \
|
||||||
|
))
|
||||||
|
|
||||||
|
# vim: set noet sw=4 ts=4:
|
Reference in New Issue
Block a user