diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-07-16 18:12:34 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-07-16 22:42:22 -0400 |
commit | 72040be69bc33b03fabe1048299bed4714616604 (patch) | |
tree | f5c12a31da1a46d80fe84bd160d600af36297616 /python/servo/package_commands.py | |
parent | 9fe92ecb4c35747fd58b13f6ae23eb0f31a14680 (diff) | |
download | servo-72040be69bc33b03fabe1048299bed4714616604.tar.gz servo-72040be69bc33b03fabe1048299bed4714616604.zip |
Load explicit set of gstreamer plugins on macos, and include them in the nightly package.
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index e4fca52516f..3bd6d856254 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -39,6 +39,7 @@ from servo.command_base import ( is_macosx, is_windows, ) +from servo.gstreamer import macos_dylibs from servo.util import delete # Note: mako cannot be imported at the top level because it breaks mach bootstrap @@ -139,6 +140,7 @@ def copy_dependencies(binary_path, lib_path): # Update binary libraries binary_dependencies = set(otool(binary_path)) + binary_dependencies = binary_dependencies.union(macos_dylibs()) change_non_system_libraries_path(binary_dependencies, relative_path, binary_path) # Update dependencies libraries |