diff options
author | bors-servo <infra@servo.org> | 2023-07-02 02:23:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 02:23:26 +0200 |
commit | ed72efa1548e819e211ce1fc8aa2d4ae556c104b (patch) | |
tree | 2329eb3491a6273b5c2477bda63bd3c4cf73b0f5 /python/servo | |
parent | a1dfadc4fac39aa80fc3c277fc6e8365ed1311f5 (diff) | |
parent | 96eeb5865cb4e9ec5d48ef4803418620e24dbaf4 (diff) | |
download | servo-ed72efa1548e819e211ce1fc8aa2d4ae556c104b.tar.gz servo-ed72efa1548e819e211ce1fc8aa2d4ae556c104b.zip |
Auto merge of #29956 - mrobinson:update-mozangle, r=jdm
Update mozangle
This should allow servo to take advantage of faster compilation times on Windows.
<!-- 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
<!-- 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')
-rw-r--r-- | python/servo/command_base.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 2f7ac3400bb..0c9f3b2adf1 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -833,9 +833,7 @@ class CommandBase(object): if self.is_uwp_build: features.append("no-wgl") features.append("uwp") - else: - # Non-UWP builds provide their own libEGL via mozangle. - features.append("egl") + 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: |