diff options
author | Akshat Agarwal <humancalico@disroot.org> | 2020-04-15 15:34:06 +0530 |
---|---|---|
committer | Akshat Agarwal <humancalico@disroot.org> | 2020-04-15 15:34:06 +0530 |
commit | 4ab2d59fea54fad65495968a3498e1a4800f28e0 (patch) | |
tree | 59eed4e75b9f92f675fd3be275e8ffb54ff73611 /python/servo/bootstrap.py | |
parent | 23deec8c39149b3603ca726c13ede23352e50a38 (diff) | |
download | servo-4ab2d59fea54fad65495968a3498e1a4800f28e0.tar.gz servo-4ab2d59fea54fad65495968a3498e1a4800f28e0.zip |
add missing dependencies
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 8bfa42e71c3..8673b2a5bd8 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -86,11 +86,13 @@ def linux(context, force=False): # Please keep these in sync with the packages in README.md pkgs_apt = ['git', 'curl', 'autoconf', 'libx11-dev', 'libfreetype6-dev', 'libgl1-mesa-dri', 'libglib2.0-dev', 'xorg-dev', 'gperf', 'g++', - 'build-essential', 'cmake', "libssl-dev", + 'build-essential', 'cmake', 'libssl-dev', 'liblzma-dev', 'libosmesa6-dev', 'libxmu6', 'libxmu-dev', 'libgles2-mesa-dev', 'libegl1-mesa-dev', 'libdbus-1-dev', - 'libharfbuzz-dev', 'ccache', 'clang', - 'autoconf2.13', 'libunwind-dev', 'llvm-dev'] + 'libharfbuzz-dev', 'ccache', 'clang', 'libunwind-dev', + 'libgstreamer1.0-dev', 'libgstreamer-plugins-base1.0-dev', + 'libgstreamer-plugins-bad1.0-dev', 'autoconf2.13', + 'libunwind-dev', 'llvm-dev'] pkgs_dnf = ['libtool', 'gcc-c++', 'libXi-devel', 'freetype-devel', 'libunwind-devel', 'mesa-libGL-devel', 'mesa-libEGL-devel', 'glib2-devel', 'libX11-devel', 'libXrandr-devel', 'gperf', |