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/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/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index d516f1639dc..512fdfe4977 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -761,4 +761,4 @@ class MachCommands(CommandBase): opts += ["-v"] opts += params return check_call(["cargo", "clean"] + opts, - env=self.build_env(), cwd=self.ports_servo_crate(), verbose=verbose) + env=self.build_env(), cwd=self.ports_glutin_crate(), verbose=verbose) |