diff options
Diffstat (limited to 'toolkit/moz.build')
-rw-r--r-- | toolkit/moz.build | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/toolkit/moz.build b/toolkit/moz.build index b02d122cd..9c5102a01 100644 --- a/toolkit/moz.build +++ b/toolkit/moz.build @@ -27,16 +27,15 @@ if CONFIG['MOZ_JETPACK']: DIRS += ['mozapps/extensions'] -if CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android': +if CONFIG['MOZ_UPDATER']: DIRS += ['mozapps/update'] - -if CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': -# Including mozapps/update/common-standalone allows the maintenance service -# to be built so the maintenance service can be used for things other than -# updating applications. - DIRS += [ - 'mozapps/update/common-standalone', - ] + if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': + # Including mozapps/update/common-standalone allows the maintenance service + # to be built so the maintenance service can be used for things other than + # updating applications. + DIRS += [ + 'mozapps/update/common-standalone', + ] DIRS += ['xre'] @@ -46,14 +45,3 @@ elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': DIRS += ['system/osxproxy'] elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': DIRS += ['system/windowsproxy'] -elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': - DIRS += ['system/androidproxy'] - -with Files('mozapps/installer/windows/*'): - BUG_COMPONENT = ('Toolkit', 'NSIS Installer') - -with Files('pluginproblem/*'): - BUG_COMPONENT = ('Core', 'Plug-ins') - -with Files('mozapps/preferences/*'): - BUG_COMPONENT = ('Toolkit', 'Preferences') |