mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
Issue #1053 - Remove android support from toolkit
Note: Does not remove support completely from toolkit/mozapps/installer or from telemetry or AppConstants.jsm
This commit is contained in:
parent
3063a156fb
commit
678b1ea2ec
73 changed files with 105 additions and 2315 deletions
|
|
@ -4,28 +4,16 @@
|
|||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIParentalControlsService.idl',
|
||||
]
|
||||
XPIDL_SOURCES += ['nsIParentalControlsService.idl']
|
||||
|
||||
XPIDL_MODULE = 'parentalcontrols'
|
||||
|
||||
if not CONFIG['MOZ_DISABLE_PARENTAL_CONTROLS']:
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
||||
SOURCES += [
|
||||
'nsParentalControlsServiceWin.cpp',
|
||||
]
|
||||
SOURCES += ['nsParentalControlsServiceWin.cpp']
|
||||
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
UNIFIED_SOURCES += [
|
||||
'nsParentalControlsServiceCocoa.mm',
|
||||
]
|
||||
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
||||
UNIFIED_SOURCES += [
|
||||
'nsParentalControlsServiceAndroid.cpp',
|
||||
]
|
||||
UNIFIED_SOURCES += ['nsParentalControlsServiceCocoa.mm']
|
||||
else:
|
||||
SOURCES += [
|
||||
'nsParentalControlsServiceDefault.cpp',
|
||||
]
|
||||
SOURCES += ['nsParentalControlsServiceDefault.cpp']
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue