Bug 632900 - Disable NetworkGeolocationProvider on Android. r=ted a=blassey

This commit is contained in:
Doug Turner 2011-02-14 10:07:46 -08:00
parent 6ab96ddde8
commit 3ca64a65e2

View File

@ -62,19 +62,23 @@ DIRS = android
endif endif
CPPSRCS = \ CPPSRCS = \
nsAccelerometer.cpp \ nsAccelerometer.cpp \
$(NULL) $(NULL)
# On Systems that have built-in geolocation providers,
# we really do not need these.
ifneq (Android,$(OS_TARGET))
EXTRA_COMPONENTS = \ EXTRA_COMPONENTS = \
NetworkGeolocationProvider.js \ NetworkGeolocationProvider.js \
NetworkGeolocationProvider.manifest \ NetworkGeolocationProvider.manifest \
GPSDGeolocationProvider.js \ GPSDGeolocationProvider.js \
GPSDGeolocationProvider.manifest \ GPSDGeolocationProvider.manifest \
$(NULL) $(NULL)
endif
EXPORTS = \ EXPORTS = \
nsAccelerometer.h \ nsAccelerometer.h \
$(NULL) $(NULL)
include $(topsrcdir)/config/config.mk include $(topsrcdir)/config/config.mk