diff options
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index b20d6d365aa..9cba39dc2d7 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -841,7 +841,6 @@ install them, let us know by filing a bug!") action='store_true', help='Build with frame pointer enabled, used by the background hang monitor.', ), - CommandArgument('--with-raqote', default=None, action='store_true'), CommandArgument('--with-layout-2020', default=None, action='store_true'), CommandArgument('--with-layout-2013', default=None, action='store_true'), CommandArgument('--without-wgl', default=None, action='store_true'), @@ -882,7 +881,7 @@ install them, let us know by filing a bug!") env=None, verbose=False, target=None, android=False, magicleap=False, libsimpleservo=False, features=None, debug_mozjs=False, with_debug_assertions=False, - with_frame_pointer=False, with_raqote=False, without_wgl=False, + with_frame_pointer=False, without_wgl=False, with_layout_2020=False, with_layout_2013=False, uwp=False, media_stack=None, ): @@ -913,16 +912,11 @@ install them, let us know by filing a bug!") if not magicleap: features.append("native-bluetooth") if uwp: - features.append("canvas2d-raqote") features.append("no-wgl") features.append("uwp") else: # Non-UWP builds provide their own libEGL via mozangle. features.append("egl") - if with_raqote and "canvas2d-azure" not in features: - features.append("canvas2d-raqote") - elif "canvas2d-azure" not in features: - features.append("canvas2d-raqote") if with_layout_2020 or (self.config["build"]["layout-2020"] and not with_layout_2013): features.append("layout-2020") elif "layout-2020" not in features: |