diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-08-27 10:11:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 10:11:37 -0400 |
commit | 9fe3c4fc0fa3fd0e028f2b4ea16d5d8795e99375 (patch) | |
tree | 7c0ca30e9aa577b1a90a8de98a39a808eb276767 /python/servo/build_commands.py | |
parent | f79ec15d17a3fbdd5ac47aacbae898725d1a883b (diff) | |
parent | c0ff30b71fdda9ded2997bafd6c7e0ce90784ed9 (diff) | |
download | servo-9fe3c4fc0fa3fd0e028f2b4ea16d5d8795e99375.tar.gz servo-9fe3c4fc0fa3fd0e028f2b4ea16d5d8795e99375.zip |
Auto merge of #24004 - servo:win-gstreamer, r=ferjm
Enable GStreamer on Windows.
I have verified that desktop and emulator UWP builds work with this set of DLLs.
---
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because no tests for UWP
<!-- 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/24004)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 920fbf61a21..d94513889c9 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -270,6 +270,8 @@ class MachCommands(CommandBase): print("Can't find Visual C++ %s installation at %s." % (vs_version, vcinstalldir)) sys.exit(1) + env['PKG_CONFIG_ALLOW_CROSS'] = "1" + if uwp: # Don't try and build a desktop port. libsimpleservo = True |