Bug 731855 - ContactService.jsm not found at chrome/content/shell.js:19 when running desktop b2g client. r=fabrice

This commit is contained in:
Gregor Wagner 2012-03-01 11:46:50 -08:00
parent dd4ca8fc7a
commit 36ab1f877f

View File

@ -11,7 +11,7 @@ VPATH = \
include $(DEPTH)/config/autoconf.mk
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
ifeq ($(MOZ_BUILD_APP),b2g)
VPATH += $(srcdir)/fallback
endif
@ -19,17 +19,16 @@ MODULE = dom
LIBRARY_NAME = jsdomcontacts_s
LIBXUL_LIBRARY = 1
EXTRA_COMPONENTS = \
ContactManager.js \
ContactManager.manifest \
EXTRA_COMPONENTS = \
ContactManager.js \
ContactManager.manifest \
$(NULL)
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
EXTRA_JS_MODULES = ContactService.jsm \
$(NULL)
EXTRA_JS_MODULES += ContactDB.jsm \
$(NULL)
ifeq ($(MOZ_BUILD_APP),b2g)
EXTRA_JS_MODULES = \
ContactService.jsm \
ContactDB.jsm \
$(NULL)
endif
ifdef ENABLE_TESTS