mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
155f7ad98a
libva introduced a dependency on libudev, and the latter does not distinguish between regular builds and runs of cargo doc to avoid depending on the system library. Thus add it as a dependency to be able to successfully build the docs. BUG=b:214478588 TEST=./tools/cargo-doc Change-Id: I4150b312fd7e1a5197c817e4d7cee5766a3c569a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3758165 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Alexandre Courbot <acourbot@chromium.org>
23 lines
877 B
Bash
Executable file
23 lines
877 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2022 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.
|
|
|
|
# Install dependencies to generate mdbook documentation.
|
|
# Before running this script, `apt update` needs to be executed.
|
|
|
|
set -ex
|
|
|
|
# Install packages to run build.rs in some crate:
|
|
# * libcap-dev: Used by minijail-sys/build.rs
|
|
# * protobuf-compiler: Generates Rust files in protos
|
|
sudo apt install --yes --no-install-recommends \
|
|
libcap-dev \
|
|
# libudev-dev is required to build the libva documentation.
|
|
libudev-dev \
|
|
protobuf-compiler
|
|
|
|
# The mdbook and mdbook-mermaid tools are used to build the crosvm book.
|
|
cargo install mdbook --no-default-features --version "^0.4.10"
|
|
cargo install mdbook-mermaid --version "^0.8.3"
|
|
cargo install mdbook-linkcheck --version "^0.7.6"
|