summaryrefslogtreecommitdiff
path: root/system/moz.configure
diff options
context:
space:
mode:
authorJeremy Andrews <athenian200@outlook.com>2021-12-06 17:59:51 -0600
committerJeremy Andrews <athenian200@outlook.com>2021-12-06 17:59:51 -0600
commitf3606be88fc4cd181d7acef45ef3c3d87e4fb022 (patch)
tree4605f3ea60f58a6e2b9ae75d076082611645de06 /system/moz.configure
parent152ced4aa03d72a12e521e5d9c6eb13db4db64a3 (diff)
downloadaura-central-f3606be88fc4cd181d7acef45ef3c3d87e4fb022.tar.gz
Issue mcp-graveyard/UXP%190 - Remove MOZ_APPLEMEDIA and dom/platforms/apple
Diffstat (limited to 'system/moz.configure')
-rw-r--r--system/moz.configure17
1 files changed, 3 insertions, 14 deletions
diff --git a/system/moz.configure b/system/moz.configure
index d10726415..b05a05d99 100644
--- a/system/moz.configure
+++ b/system/moz.configure
@@ -262,17 +262,6 @@ add_old_configure_assignment('FT2_LIBS',
add_old_configure_assignment('FT2_CFLAGS',
delayed_getattr(ft2_info, 'cflags'))
-# Apple platform decoder support
-# ==============================================================
-@depends(toolkit)
-def applemedia(toolkit):
- if toolkit in ('uikit'):
- return True
-
-set_config('MOZ_APPLEMEDIA', applemedia)
-set_define('MOZ_APPLEMEDIA', applemedia)
-add_old_configure_assignment('MOZ_APPLEMEDIA', applemedia)
-
# Windows Media Foundation support
# ==============================================================
option('--disable-wmf',
@@ -316,11 +305,11 @@ imply_option('--enable-fmp4', ffmpeg, '--enable-ffmpeg')
option('--disable-fmp4', env='MOZ_FMP4',
help='Disable support for in built Fragmented MP4 parsing')
-@depends('--disable-fmp4', target, wmf, applemedia)
-def fmp4(value, target, wmf, applemedia):
+@depends('--disable-fmp4', target, wmf)
+def fmp4(value, target, wmf):
enabled = bool(value)
if value.origin == 'default':
- enabled = wmf or applemedia
+ enabled = wmf
if enabled:
return True