Bug 495387 - A few naughty things build their tests without ENABLE_TESTS, r=ted

This commit is contained in:
Phil Ringnalda
2009-06-13 11:53:37 -07:00
parent b39482da59
commit 9390f13c32
6 changed files with 25 additions and 8 deletions
+5 -1
View File
@@ -43,7 +43,11 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = accessibility
DIRS = public src build tests
DIRS = public src build
ifdef ENABLE_TESTS
DIRS += tests
endif
include $(topsrcdir)/config/rules.mk
+1 -3
View File
@@ -45,9 +45,7 @@ include $(DEPTH)/config/autoconf.mk
MODULE = test_accessibility
ifdef ENABLE_TESTS
DIRS += mochitest
endif
DIRS = mochitest
include $(topsrcdir)/config/rules.mk
+5 -1
View File
@@ -42,6 +42,10 @@ srcdir = @srcdir@
VPATH = @srcdir@
MODULE = pipnss
DIRS = src public tests
DIRS = src public
ifdef ENABLE_TESTS
DIRS += tests
endif
include $(topsrcdir)/config/rules.mk
+4 -1
View File
@@ -45,7 +45,10 @@ include $(DEPTH)/config/autoconf.mk
DIRS = \
public \
src \
test \
$(NULL)
ifdef ENABLE_TESTS
DIRS += test
endif
include $(topsrcdir)/config/rules.mk
+5 -1
View File
@@ -42,7 +42,11 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src test
DIRS = public src
ifdef ENABLE_TESTS
DIRS += test
endif
include $(topsrcdir)/config/rules.mk
+5 -1
View File
@@ -42,6 +42,10 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src test
DIRS = public src
ifdef ENABLE_TESTS
DIRS += test
endif
include $(topsrcdir)/config/rules.mk