From 4ab2d59fea54fad65495968a3498e1a4800f28e0 Mon Sep 17 00:00:00 2001 From: Akshat Agarwal Date: Wed, 15 Apr 2020 15:34:06 +0530 Subject: [PATCH] add missing dependencies --- python/servo/bootstrap.py | 8 +++++--- 1 file 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',