diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-05-07 16:46:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-05-07 16:48:19 +0200 |
commit | ff9fbfd9c9e9a1caa72601df951a7fd85eb8fcc1 (patch) | |
tree | 430ecd9b82337cb7f1815fee538a9e7e1af1fc92 /smoketest/Jar_smoketest.mk | |
parent | 2d3d942683d1cce738eab09b58e4fd693d5e7241 (diff) |
Extract SmoketestCommandEnvironment.java from juh.jar
...into a new smoketest.jar, so that URE juh.jar no longer depends on non-URE
unoil.jar.
Change-Id: I8937c78d8af6e2f82ada5dd80c322f8bca5ec2f5
Diffstat (limited to 'smoketest/Jar_smoketest.mk')
-rw-r--r-- | smoketest/Jar_smoketest.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/smoketest/Jar_smoketest.mk b/smoketest/Jar_smoketest.mk new file mode 100644 index 000000000000..2f0bca193901 --- /dev/null +++ b/smoketest/Jar_smoketest.mk @@ -0,0 +1,29 @@ +# -*- 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_Jar_Jar,smoketest)) + +$(eval $(call gb_Jar_add_sourcefiles,smoketest, \ + smoketest/org/libreoffice/smoketest/Services \ + smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment \ +)) + +$(eval $(call gb_Jar_set_componentfile,smoketest,smoketest/org/libreoffice/smoketest/smoketest,OOO)) + +$(eval $(call gb_Jar_set_manifest,smoketest,$(SRCDIR)/smoketest/org/libreoffice/smoketest/manifest)) + +$(eval $(call gb_Jar_set_packageroot,smoketest,org)) + +$(eval $(call gb_Jar_use_jars,smoketest, \ + juh \ + ridl \ + unoil \ +)) + +# vim: set noet sw=4 ts=4: |