crosvm/tools/install-deps
Alexandre Courbot b3f5fbae62 tools: install-deps: add libva-dev and libudev-dev as dependencies
These libraries are needed to build the upcoming vaapi backend. Also
update the container so they are included.

BUG=b:214478588
TEST=./tools/dev_container ./tools/presubmit --all

Change-Id: Id30c38557d56b4c94ca5f2419c73b34520916ed0
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3715087
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Alexandre Courbot <acourbot@chromium.org>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
2022-06-23 01:12:15 +00:00

61 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 \
libudev-dev \
libva-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