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
CPPSRCS = \
nsAccelerometer.cpp \
$(NULL)
nsAccelerometer.cpp \
$(NULL)
# On Systems that have built-in geolocation providers,
# we really do not need these.
ifneq (Android,$(OS_TARGET))
EXTRA_COMPONENTS = \
NetworkGeolocationProvider.js \
NetworkGeolocationProvider.manifest \
GPSDGeolocationProvider.js \
GPSDGeolocationProvider.manifest \
$(NULL)
NetworkGeolocationProvider.js \
NetworkGeolocationProvider.manifest \
GPSDGeolocationProvider.js \
GPSDGeolocationProvider.manifest \
$(NULL)
endif
EXPORTS = \
nsAccelerometer.h \
$(NULL)
nsAccelerometer.h \
$(NULL)
include $(topsrcdir)/config/config.mk