diff options
author | Martin Robinson <mrobinson@webkit.org> | 2023-07-01 17:33:19 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-07-01 18:41:54 +0200 |
commit | 96eeb5865cb4e9ec5d48ef4803418620e24dbaf4 (patch) | |
tree | a1f3114d2a5be8cfd693af7f093d71626ac1640f /python/servo/command_base.py | |
parent | f034eb60323c1501ba00e86cb7c2de243f41b56c (diff) | |
download | servo-96eeb5865cb4e9ec5d48ef4803418620e24dbaf4.tar.gz servo-96eeb5865cb4e9ec5d48ef4803418620e24dbaf4.zip |
Update mozangle
This should allow servo to take advantage of faster compilation speeds
on Windows.
Diffstat (limited to 'python/servo/command_base.py')
-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: |