tools: install-deps: add ffmpeg libraries as dependencies

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>
This commit is contained in:
Alexandre Courbot 2022-06-02 15:32:32 +09:00 committed by Chromeos LUCI
parent c1b467f17a
commit d036e9f225
6 changed files with 17 additions and 2 deletions

View file

@ -1 +1 @@
r0009
r0010

View file

@ -30,22 +30,28 @@ bootcmd:
# Runtime dependencies of crosvm binaries.
# Note: Keep in sync with ./install-[aarch64-]deps.sh
packages:
- libavcodec58
- libavutil56
- libcap2
- libdbus-1-3
- libdrm2
- libepoxy0
- libssl1.1
- libswscale5
- libwayland-client0
- libx11-6
- libxext6
- rsync
{% if v1.machine == 'aarch64' %}
# Note: Keep in sync with the above
- libavcodec58:armhf
- libavutil56:armhf
- libcap2:armhf
- libdbus-1-3:armhf
- libdrm2:armhf
- libepoxy0:armhf
- libssl1.1:armhf
- libswscale5:armhf
- libwayland-client0:armhf
- libx11-6:armhf
- libxext6:armhf

View file

@ -1 +1 @@
r0002
r0003

View file

@ -7,12 +7,15 @@ set -ex
sudo apt-get install --yes --no-install-recommends \
gcc-aarch64-linux-gnu \
ipxe-qemu \
libavcodec-dev:arm64 \
libavutil-dev:arm64 \
libc-dev:arm64 \
libcap-dev:arm64 \
libdbus-1-dev:arm64 \
libdrm-dev:arm64 \
libepoxy-dev:arm64 \
libssl-dev:arm64 \
libswscale-dev:arm64 \
libwayland-dev:arm64 \
libxext-dev:arm64 \
qemu-efi-aarch64 \

View file

@ -6,12 +6,15 @@ set -ex
sudo apt-get install --yes --no-install-recommends \
gcc-arm-linux-gnueabihf \
libavcodec-dev:armhf \
libavutil-dev:armhf \
libc-dev:armhf \
libcap-dev:armhf \
libdbus-1-dev:armhf \
libdrm-dev:armhf \
libepoxy-dev:armhf \
libssl-dev:armhf \
libswscale-dev:armhf \
libwayland-dev:armhf \
libxext-dev:armhf

View file

@ -15,11 +15,14 @@ sudo apt-get install --yes --no-install-recommends \
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 \