From 81c439a8990caf498bd3318cbe5f51c33830f7e3 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Wed, 20 Nov 2019 13:24:21 +0000 Subject: Extract media_stack pick into CommandBase --- python/servo/build_commands.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'python/servo/build_commands.py') diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index effcd8676c5..8f462939b5b 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -191,18 +191,7 @@ class MachCommands(CommandBase): if not uwp: uwp = target and 'uwp' in target - # A guess about which platforms should use the gstreamer media stack - if not(media_stack): - if ( - not(target) or - ("armv7" in target and "android" in target) or - ("x86_64" in target) - ): - media_stack = "gstreamer" - else: - media_stack = "dummy" - - features += ["media-" + media_stack] + features += self.pick_media_stack(media_stack, target) target_path = base_path = self.get_target_dir() if android: -- cgit v1.2.3