Bug 915938 - Increase fuzz for text-not-in-doc-test.html. r=gw280, a=bustage
[gecko.git] / testing / mozbase / Makefile.in
blob1212eeb33a27386fe8bdf53aee2055efe827a571
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 DEPTH = @DEPTH@
6 topsrcdir = @top_srcdir@
7 srcdir = @srcdir@
8 VPATH = @srcdir@
10 include $(DEPTH)/config/autoconf.mk
12 PYTHON_UNIT_TESTS := \
13 test.py \
14 $(NULL)
16 include $(topsrcdir)/config/rules.mk
18 # Harness packages from the srcdir
19 MOZBASE_PACKAGES = \
20 manifestdestiny \
21 mozcrash \
22 mozfile \
23 mozhttpd \
24 mozinfo \
25 mozinstall \
26 mozlog \
27 mozprocess \
28 mozprofile \
29 mozrunner \
30 mozdevice \
31 moznetwork \
32 mozsystemmonitor \
33 moztest \
34 $(NULL)
36 MOZBASE_EXTRAS = \
37 setup_development.py \
38 $(NULL)
40 _DEST_DIR = $(DEPTH)/_tests/mozbase
41 libs:: $(MOZBASE_PACKAGES)
42 $(PYTHON) $(topsrcdir)/config/nsinstall.py $^ $(_DEST_DIR)
43 libs:: $(MOZBASE_EXTRAS)
44 $(PYTHON) $(topsrcdir)/config/nsinstall.py $^ $(_DEST_DIR)
46 stage-package: PKG_STAGE = $(DIST)/test-package-stage
47 stage-package:
48 $(NSINSTALL) -D $(PKG_STAGE)/mozbase
49 @(cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(MOZBASE_PACKAGES)) | (cd $(PKG_STAGE)/mozbase && tar -xf -)
50 @(cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(MOZBASE_EXTRAS)) | (cd $(PKG_STAGE)/mozbase && tar -xf -)