mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
d036e9f225
Add the ffmpeg libraries needed by the ffmpeg decoder device backend and bump the dev_container and testvm to include them. BUG=b:169295147 TEST=./tools/install-deps TEST=./tools/dev_container Change-Id: Ifc07b9599403aa1ed18a96067ada1fa2efa6e13c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3685682 Reviewed-by: Junichi Uekawa <uekawa@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Alexandre Courbot <acourbot@chromium.org>
59 lines
1.2 KiB
Bash
Executable file
59 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2021 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
set -ex
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install --yes --no-install-recommends \
|
|
ca-certificates \
|
|
cloud-image-utils \
|
|
curl \
|
|
dpkg-dev \
|
|
expect \
|
|
gcc \
|
|
git \
|
|
jq \
|
|
libasound2-dev \
|
|
libavcodec-dev \
|
|
libavutil-dev \
|
|
libclang-dev \
|
|
libdbus-1-dev \
|
|
libdrm-dev \
|
|
libepoxy-dev \
|
|
libssl-dev \
|
|
libswscale-dev \
|
|
libwayland-dev \
|
|
libxext-dev \
|
|
make \
|
|
nasm \
|
|
ninja-build \
|
|
openssh-client \
|
|
pkg-config \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
qemu-system-x86 \
|
|
rsync \
|
|
screen \
|
|
wine64 \
|
|
gcc-mingw-w64-x86-64-win32 \
|
|
wayland-protocols
|
|
|
|
pip3 install \
|
|
meson \
|
|
mdformat \
|
|
argh \
|
|
mypy \
|
|
black
|
|
|
|
rustup component add clippy
|
|
rustup component add rustfmt
|
|
|
|
rustup target add x86_64-pc-windows-gnu
|
|
|
|
# The bindgen tool is required to build a crosvm dependency.
|
|
cargo install bindgen
|
|
|
|
# Install dependencies used to generate mdbook documentation.
|
|
$(dirname "$0")/install-docs-deps
|