Bug 364337. Fix unit test build bustage--don't run bookmarks tests when bookmarks aren't enabled. r=sspitzer

This commit is contained in:
sayrer%gmail.com 2006-12-19 19:51:31 +00:00
Родитель 05090586c2
Коммит e19afc027e
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -58,6 +58,11 @@ MODULE = test_places
include $(topsrcdir)/config/rules.mk include $(topsrcdir)/config/rules.mk
_UNIT_FILES := $(wildcard $(srcdir)/unit/*.js) _UNIT_FILES := $(wildcard $(srcdir)/unit/*.js)
#ifndef MOZ_PLACES_BOOKMARKS
_UNIT_FILES := $(patsubst %marks.js,,$(_UNIT_FILES))
_UNIT_FILES += $(wildcard $(srcdir)/unit/head*.js)
_UNIT_FILES += $(wildcard $(srcdir)/unit/tail*.js)
#endif
libs:: $(_UNIT_FILES) libs:: $(_UNIT_FILES)
$(INSTALL) $^ $(DIST)/bin/$(MODULE) $(INSTALL) $^ $(DIST)/bin/$(MODULE)