mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
1dab58a2cf
This search/replace updates all copyright notices to drop the "All rights reserved", Use "ChromiumOS" instead of "Chromium OS" and drops the trailing dots. This fulfills the request from legal and unifies our notices. ./tools/health-check has been updated to only accept this style. BUG=b:246579983 TEST=./tools/health-check Change-Id: I87a80701dc651f1baf4820e5cc42469d7c5f5bf7 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3894243 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com>
23 lines
872 B
Bash
Executable file
23 lines
872 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2022 The ChromiumOS Authors
|
|
# 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
|
|
# * libudev-dev: Used by libudev-sys's build.rs, pulled by libva
|
|
# * protobuf-compiler: Generates Rust files in protos
|
|
sudo apt install --yes --no-install-recommends \
|
|
libcap-dev \
|
|
libudev-dev \
|
|
protobuf-compiler
|
|
|
|
# The mdbook and mdbook-mermaid tools are used to build the crosvm book.
|
|
cargo install mdbook --no-default-features --features search --version "^0.4.10"
|
|
cargo install mdbook-mermaid --version "^0.8.3"
|
|
cargo install mdbook-linkcheck --version "^0.7.6"
|