aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-12-18 09:36:25 -0500
committerGitHub <noreply@github.com>2019-12-18 09:36:25 -0500
commitdcdf910a259005bbdd993089d12f9f7eca9a26db (patch)
treeb3dec73475616d7baed5e7a6e250b6cd318186d6 /python/servo/command_base.py
parentc65e2685db93024e60bb76d010e67cac2c16d91d (diff)
parent4f4c32fa6f95422674baf8b9b3b6933d0768f37c (diff)
downloadservo-dcdf910a259005bbdd993089d12f9f7eca9a26db.tar.gz
servo-dcdf910a259005bbdd993089d12f9f7eca9a26db.zip
Auto merge of #24470 - pylbrecht:raqote, r=jdm
Enable raqote as 2D canvas rendering backend by default <!-- Please describe your changes on the following line: --> This will enable raqote by default and make all WPT tests pass. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #23431 <!-- Either: --> - [X] There are tests for these changes <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 1a56777f14f..7c82acaa534 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -929,8 +929,8 @@ install them, let us know by filing a bug!")
features.append("egl")
if with_raqote and "canvas2d-azure" not in features:
features.append("canvas2d-raqote")
- elif "canvas2d-raqote" not in features:
- features.append("canvas2d-azure")
+ 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: