aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2020-04-15 11:57:23 -0400
committerGitHub <noreply@github.com>2020-04-15 11:57:23 -0400
commit9e2ca8b05e7a58d000e4730080bdf28bddb0925a (patch)
tree1731f3bbf22bf6b96cd3779cfde0c91b8b9f7e83
parent242a000f2fd3aeb2227e4a7636286ed8916e2768 (diff)
parent4ab2d59fea54fad65495968a3498e1a4800f28e0 (diff)
downloadservo-9e2ca8b05e7a58d000e4730080bdf28bddb0925a.tar.gz
servo-9e2ca8b05e7a58d000e4730080bdf28bddb0925a.zip
Auto merge of #26188 - humancalico:bootstrap, r=jdm
add some missing dependencies to bootstrap.py <!-- Please describe your changes on the following line: --> This commit adds some missing dependencies to `bootstrap.py` to keep in sync with the packages on `README.md` which was causing `./mach build` to fail --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
-rw-r--r--python/servo/bootstrap.py8
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',