mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
ab0ad4caa0
Both libraries have previously been built as part of ci/build_environment/Makefile. This CL moves that behavior into the build.rs file of rutabaga_gfx. This is the last third party dependency that we need to build from source, and allows us to build/test on the host machine instead of requiring the builder container. It also allows us to greatly simplify the builder containers, which I will do in a follow-up CL as we also need to upgrade them to bullseye. This CL uprevs virglrenderer to include: https://gitlab.freedesktop.org/virgl/virglrenderer/-/merge_requests/609 and minigbm to include: https://crrev.com/c/3141018 BUG=b:196059146 TEST=./test_all && ./run_tests --run-privileged Change-Id: I4442ccc991d13a3fcfa224de50e916b3926f0cb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3141771 Commit-Queue: Dennis Kempin <denniskempin@google.com> Tested-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
25 lines
643 B
TOML
25 lines
643 B
TOML
[package]
|
|
name = "rutabaga_gfx"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
gfxstream = []
|
|
virgl_renderer = []
|
|
virgl_renderer_next = []
|
|
minigbm = []
|
|
# To try out Vulkano, delete the following line and uncomment the line in "dependencies". vulkano
|
|
# features are just a prototype and not integrated yet into the ChromeOS build system.
|
|
vulkano = []
|
|
|
|
[dependencies]
|
|
data_model = { path = "../data_model" }
|
|
libc = "*"
|
|
base = { path = "../base" }
|
|
sync = { path = "../sync" }
|
|
#vulkano = {git = "https:/github.com/vulkano-rs/vulkano.git", optional = true}
|
|
|
|
[build-dependencies]
|
|
pkg-config = "*"
|
|
anyhow = "*"
|