33 lines
894 B
Makefile
33 lines
894 B
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = ../../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = browser/components/feeds/test/chrome
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# sample_feed.atom was copied from toolkit/components/places/tests/chrome
|
|
_HTTP_FILES = \
|
|
sample_feed.atom \
|
|
$(NULL)
|
|
|
|
_CHROME_FILES = \
|
|
test_423060.xul \
|
|
test_bug368464.html \
|
|
test_bug408328.html \
|
|
test_maxSniffing.html \
|
|
$(NULL)
|
|
|
|
libs:: $(_HTTP_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
|
|
|
libs:: $(_CHROME_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/chrome/$(relativesrcdir)
|
|
|