diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-04-29 10:45:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 10:45:29 -0400 |
commit | a9f7b132303f7c02648043df5ebdc25726bd3f88 (patch) | |
tree | eee887c8856ce5a5973e2b1650c6a9bccb7bebe6 /python/servo/post_build_commands.py | |
parent | 799490a02e9bea575bf34c39f045ef0883539f05 (diff) | |
parent | 21ed7653f491d9e378aa7a334b40e7327f4bfc90 (diff) | |
download | servo-a9f7b132303f7c02648043df5ebdc25726bd3f88.tar.gz servo-a9f7b132303f7c02648043df5ebdc25726bd3f88.zip |
Auto merge of #23233 - paulrouget:glutin-port-refactoring, r=jdm
Glutin port refactoring
Glutin port refactoring in preparation for the compositor and libservo refactoring.
In theory, the only behavior change is for headless mode. The headless event loop now uses winit's event loop (but still headless).
Notes:
- headless and glutin window implementations are now separated
- I split the methods of the embedder in 2: window specific and general methods. In the future, we still want the app to run even without a window or with multiple windows
<!-- 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/23233)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 4050f33f932..4d27475f74b 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -265,7 +265,7 @@ class PostBuildCommands(CommandBase): copy2(full_name, destination) returncode = self.call_rustup_run( - ["cargo", "doc", "--manifest-path", self.ports_servo_manifest()] + params, + ["cargo", "doc", "--manifest-path", self.ports_glutin_manifest()] + params, env=self.build_env()) if returncode: return returncode |