diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-07-10 10:36:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-10 10:36:45 -0400 |
commit | 1a9300a29de1cd17abf0150f4fee884a31821048 (patch) | |
tree | 4782fb4e563c4445d85384e71e2d88ac50c246f4 /python | |
parent | d0bd2d5e44d4006b00ef53f351945d01e1c8458d (diff) | |
download | servo-1a9300a29de1cd17abf0150f4fee884a31821048.tar.gz servo-1a9300a29de1cd17abf0150f4fee884a31821048.zip |
Enable uwp feature when building with --uwp.
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/command_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 801ec70b22e..57e729dc92c 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -846,6 +846,7 @@ install them, let us know by filing a bug!") if uwp: features.append("canvas2d-raqote") features.append("no_wgl") + features.append("uwp") else: # Non-UWP builds provide their own libEGL via mozangle. features.append("egl") |