diff options
Diffstat (limited to 'uriloader/exthandler/moz.build')
-rw-r--r-- | uriloader/exthandler/moz.build | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/uriloader/exthandler/moz.build b/uriloader/exthandler/moz.build index 714b275f17..0cd2340a92 100644 --- a/uriloader/exthandler/moz.build +++ b/uriloader/exthandler/moz.build @@ -24,8 +24,8 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': LOCAL_INCLUDES += ['win'] elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': osdir = 'mac' -elif CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'uikit'): - osdir = CONFIG['MOZ_WIDGET_TOOLKIT'] +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'uikit': + osdir = 'uikit' else: osdir = 'unix' @@ -38,12 +38,6 @@ EXPORTS += [ 'nsExternalHelperAppService.h', ] -if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': - EXPORTS += [ '%s/%s' % (osdir, f) for f in [ - 'nsExternalSharingAppService.h', - 'nsExternalURLHandlerService.h', - ]] - EXPORTS.mozilla.dom += [ 'ExternalHelperAppChild.h', 'ExternalHelperAppParent.h', @@ -85,13 +79,6 @@ if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: 'unix/nsGNOMERegistry.cpp', 'unix/nsMIMEInfoUnix.cpp', ] -elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': - UNIFIED_SOURCES += [ - 'android/nsAndroidHandlerApp.cpp', - 'android/nsExternalSharingAppService.cpp', - 'android/nsExternalURLHandlerService.cpp', - 'android/nsMIMEInfoAndroid.cpp', - ] elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': UNIFIED_SOURCES += [ 'win/nsMIMEInfoWin.cpp', |