diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-06-03 11:05:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 11:05:56 -0400 |
commit | 657ed9f1ca0c389d6d668acbe9cf4d5aca18579e (patch) | |
tree | 0076b06155fe89f63d31557b1d38f51982443f24 /python/servo/build_commands.py | |
parent | 22cbf5fd2ae04a496c3ba78f3baa588f2a91028d (diff) | |
parent | 8467c00cf3c1865b7ce6a4274b35501f81493c40 (diff) | |
download | servo-657ed9f1ca0c389d6d668acbe9cf4d5aca18579e.tar.gz servo-657ed9f1ca0c389d6d668acbe9cf4d5aca18579e.zip |
Auto merge of #23451 - pylbrecht:canvas.rendering, r=Manishearth
Use raqote for 2D canvas rendering
<!-- Please describe your changes on the following line: -->
---
<!-- 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
- [x] These changes fix (part of) #23431 and #23466
<!-- Either: -->
<!-- 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. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23451)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 05e8db0bfdc..51709be6834 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -296,6 +296,9 @@ class MachCommands(CommandBase): if self.config["build"]["dom-backtrace"]: features += ["dom-backtrace"] + if "raqote_backend" not in features: + features += ["azure_backend"] + if features: opts += ["--features", "%s" % ' '.join(features)] |