mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
3b6c7295e3
Refactor udmabuf support out from virtio_gpu into the shared vm_memory target, so that can be used for vvu. BUG=b:201745804 TEST=compiles TEST=./tools/bindgen-all-the-things Change-Id: I2944f0cb8c75e4320400bfb9f7026dc1efe0c12b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3716339 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: David Stevens <stevensd@chromium.org> Reviewed-by: Alexandre Courbot <acourbot@chromium.org> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
20 lines
418 B
TOML
20 lines
418 B
TOML
[package]
|
|
name = "vm_memory"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
include = ["src/**/*", "Cargo.toml"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
cros_async = { path = "../cros_async" }
|
|
data_model = { path = "../common/data_model" }
|
|
libc = "*"
|
|
base = { path = "../base" }
|
|
bitflags = "1"
|
|
remain = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
thiserror = "*"
|
|
|
|
[features]
|
|
udmabuf = []
|