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/post_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/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 4d27475f74b..42e2ad84cb4 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -264,6 +264,8 @@ class PostBuildCommands(CommandBase): else: copy2(full_name, destination) + params += ["--features", "azure_backend"] + returncode = self.call_rustup_run( ["cargo", "doc", "--manifest-path", self.ports_glutin_manifest()] + params, env=self.build_env()) |