diff options
author | Daniel Alley <dalley@redhat.com> | 2020-02-25 00:14:24 -0500 |
---|---|---|
committer | Daniel Alley <dalley@redhat.com> | 2020-02-25 00:14:24 -0500 |
commit | 430a65be07b1cd0b9b4f59ff4a23a687c94cdcbd (patch) | |
tree | 73c2b7da9a0b0a053779570cec29f58782b13256 /python/servo/command_base.py | |
parent | 145c89a2d49b7a0c2842e99dff65da4d8164bf7d (diff) | |
download | servo-430a65be07b1cd0b9b4f59ff4a23a687c94cdcbd.tar.gz servo-430a65be07b1cd0b9b4f59ff4a23a687c94cdcbd.zip |
Remove azure canvas backend
closes #25833
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: |