diff options
author | Peter Foley <pefoley2@verizon.net> | 2013-02-22 21:33:23 -0500 |
---|---|---|
committer | David Ostrovsky <David.Ostrovsky@gmx.de> | 2013-02-24 10:34:40 +0000 |
commit | 61e7c592faa2d768d599936e57042eb22bcaa16f (patch) | |
tree | 2be399d2aa1179fc4d982f3074481ec8fd49a84c /moz/CustomTarget_runtime.mk | |
parent | a5a24fa0241930ae5f9d8a4c757e479d2de3efb6 (diff) |
convert moz to gbuild and add to tail_build
Change-Id: I2d3f5d127f831ee9abc020d46558f7cfbe8c9380
Reviewed-on: https://gerrit.libreoffice.org/2349
Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Diffstat (limited to 'moz/CustomTarget_runtime.mk')
-rw-r--r-- | moz/CustomTarget_runtime.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/moz/CustomTarget_runtime.mk b/moz/CustomTarget_runtime.mk new file mode 100644 index 000000000000..1296f2ae6ea2 --- /dev/null +++ b/moz/CustomTarget_runtime.mk @@ -0,0 +1,27 @@ +# -*- 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/. +# + +MOZ_DEL_LIST := freebl3.dll \ + nspr4.dll \ + nss3.dll \ + plc4.dll \ + plds4.dll \ + smime3.dll \ + softokn3.dll \ + ssl3.dll + +$(eval $(call gb_CustomTarget_CustomTarget,moz/runtime)) + +$(eval $(call gb_CustomTarget_register_target,moz/runtime,mozruntime.zip)) + +$(call gb_CustomTarget_get_workdir,moz/runtime)/mozruntime.zip: $(TARFILE_LOCATION)/$(MOZ_ZIP_RUNTIME) + cp $< $@ + zip -qd $@ $(MOZ_DEL_LIST) + +# vim: set noet sw=4 ts=4: |