mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
bae88f4f65
The current crate still require some work to be really reusable as a regular FUSE, i.e. with a new reader/writer against /dev/fuse. This change intends to focus on creating the crate, without trying to find the optimal interface, and still keep virtio/fs working. BUG=b:168305155 TEST=./build_test TEST=USE='asan fuzzer' emerge-hatch crosvm Change-Id: I8b623c9262221113b720c10125a6770763f14dc8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2466484 Tested-by: Victor Hsieh <victorhsieh@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Commit-Queue: Victor Hsieh <victorhsieh@chromium.org>
57 lines
1.7 KiB
TOML
57 lines
1.7 KiB
TOML
[package]
|
|
name = "devices"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
audio = []
|
|
gpu = ["gpu_buffer", "gpu_display", "gpu_renderer"]
|
|
tpm = ["protos/trunks", "tpm2"]
|
|
video-decoder = ["libvda"]
|
|
video-encoder = ["libvda"]
|
|
wl-dmabuf = []
|
|
x = ["gpu_display/x"]
|
|
gfxstream = ["gpu", "gpu_renderer/gfxstream"]
|
|
|
|
[dependencies]
|
|
acpi_tables = {path = "../acpi_tables" }
|
|
audio_streams = "*"
|
|
bit_field = { path = "../bit_field" }
|
|
cros_async = { path = "../cros_async" }
|
|
data_model = { path = "../data_model" }
|
|
disk = { path = "../disk" }
|
|
enumn = { path = "../enumn" }
|
|
fuse = {path = "../fuse" }
|
|
gpu_buffer = { path = "../gpu_buffer", optional = true }
|
|
gpu_display = { path = "../gpu_display", optional = true }
|
|
gpu_renderer = { path = "../gpu_renderer", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
kvm_sys = { path = "../kvm_sys" }
|
|
libc = "*"
|
|
libcras = "*"
|
|
libvda = { version = "*", optional = true }
|
|
linux_input_sys = { path = "../linux_input_sys" }
|
|
minijail = "*"
|
|
msg_on_socket_derive = { path = "../msg_socket/msg_on_socket_derive" }
|
|
msg_socket = { path = "../msg_socket" }
|
|
net_sys = { path = "../net_sys" }
|
|
net_util = { path = "../net_util" }
|
|
p9 = "*"
|
|
protos = { path = "../protos", optional = true }
|
|
rand_ish = { path = "../rand_ish" }
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
sync = { path = "../sync" }
|
|
base = { path = "../base" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
tpm2 = { path = "../tpm2", optional = true }
|
|
usb_util = { path = "../usb_util" }
|
|
vfio_sys = { path = "../vfio_sys" }
|
|
vhost = { path = "../vhost" }
|
|
virtio_sys = { path = "../virtio_sys" }
|
|
vm_control = { path = "../vm_control" }
|
|
vm_memory = { path = "../vm_memory" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { path = "../tempfile" }
|