mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
6d0d597b5f
This won't be functional at runtime, but does allow us to at least compile with gfxstream enabled. BUG=b:244618506 TEST=presubmit Change-Id: I72a63976310e635964645a1265a22518fc6cb694 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3967431 Reviewed-by: Kaiyi Li <kaiyili@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
32 lines
843 B
TOML
32 lines
843 B
TOML
[package]
|
|
name = "rutabaga_gfx"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
gfxstream = []
|
|
gfxstream_stub = []
|
|
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 = []
|
|
x = []
|
|
|
|
[dependencies]
|
|
cfg-if = "*"
|
|
data_model = { path = "../common/data_model" }
|
|
libc = "*"
|
|
base = { path = "../base" }
|
|
remain = "*"
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
# To build latest Vulkano, change version to git = "https:/github.com/vulkano-rs/vulkano.git"
|
|
# vulkano = { version = "0.31.0", optional = true }
|
|
|
|
[build-dependencies]
|
|
pkg-config = "*"
|
|
anyhow = "*"
|