mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-23 18:32:20 +00:00
52 lines
1.9 KiB
Makefile
52 lines
1.9 KiB
Makefile
# vim: set shiftwidth=8 tabstop=8 autoindent noexpandtab copyindent:
|
|
# 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/.
|
|
|
|
_DEST_DIR = $(DEPTH)/_tests/reftest
|
|
|
|
_HARNESS_FILES = \
|
|
$(srcdir)/runreftest.py \
|
|
$(srcdir)/reftestcommandline.py \
|
|
$(srcdir)/remotereftest.py \
|
|
$(srcdir)/runreftestb2g.py \
|
|
$(srcdir)/runreftestmulet.py \
|
|
$(srcdir)/gaia_lock_screen.js \
|
|
automation.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/devicemanager.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/devicemanagerADB.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/devicemanagerSUT.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/droid.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/version_codes.py \
|
|
$(topsrcdir)/testing/mozbase/mozdevice/mozdevice/Zeroconf.py \
|
|
$(topsrcdir)/testing/mozbase/moznetwork/moznetwork/moznetwork.py \
|
|
$(topsrcdir)/build/mobile/b2gautomation.py \
|
|
$(topsrcdir)/build/mobile/remoteautomation.py \
|
|
$(topsrcdir)/testing/mochitest/server.js \
|
|
$(topsrcdir)/build/pgo/server-locations.txt \
|
|
$(NULL)
|
|
|
|
_HARNESS_PP_FILES = \
|
|
b2g_start_script.js \
|
|
$(NULL)
|
|
_HARNESS_PP_FILES_PATH = $(_DEST_DIR)
|
|
PP_TARGETS += _HARNESS_PP_FILES
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# We're installing to _tests/reftest
|
|
TARGET_DEPTH = ../..
|
|
include $(topsrcdir)/build/automation-build.mk
|
|
|
|
$(_DEST_DIR):
|
|
$(NSINSTALL) -D $@
|
|
|
|
$(_HARNESS_FILES): $(_DEST_DIR)
|
|
|
|
# copy harness and the reftest extension bits to $(_DEST_DIR)
|
|
# This needs to happen after jar.mn handling from rules.mk included above.
|
|
# The order of the :: rules ensures that.
|
|
libs:: $(_HARNESS_FILES) $(addprefix $(_DEST_DIR)/,$(_HARNESS_PP_FILES))
|
|
$(INSTALL) $(_HARNESS_FILES) $(_DEST_DIR)
|
|
(cd $(DIST)/xpi-stage && tar $(TAR_CREATE_FLAGS) - reftest) | (cd $(_DEST_DIR) && tar -xf -)
|