# 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/. include $(topsrcdir)/config/rules.mk ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa) plugin_file_names = Test.plugin SecondTest.plugin ThirdTest.plugin npswftest.plugin else plugin_file_names = $(DLL_PREFIX)nptest$(DLL_SUFFIX) $(DLL_PREFIX)npsecondtest$(DLL_SUFFIX) $(DLL_PREFIX)npthirdtest$(DLL_SUFFIX) $(DLL_PREFIX)npswftest$(DLL_SUFFIX) endif # This is so hacky. Waiting on bug 988938. testdir = $(topobjdir)/_tests/xpcshell/dom/plugins/test/unit/ addonpath = $(testdir)/testaddon.xpi libs:: $(NSINSTALL) -D $(testdir) rm -f $(addonpath) cd $(srcdir) && zip -rD $(addonpath) install.rdf cd $(DIST) && zip -rD $(addonpath) $(foreach name,$(plugin_file_names),plugins/$(name))