mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
2dcbb98677
Make `cargo test --feauture=direct` pass by fixing build dependencies and skipping a broken test case. BUG=b:220292205 TEST=cargo build --features=direct in x86_64 Change-Id: I599ad5bc7ebb2fa91f6ff64291fb15ea129f8d05 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3708381 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
31 lines
857 B
TOML
31 lines
857 B
TOML
[package]
|
|
name = "x86_64"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
gdb = ["gdbstub_arch", "arch/gdb"]
|
|
direct = ["arch/direct", "devices/direct"]
|
|
|
|
[dependencies]
|
|
arch = { path = "../arch" }
|
|
anyhow = "*"
|
|
assertions = { path = "../common/assertions" }
|
|
data_model = { path = "../common/data_model" }
|
|
devices = { path = "../devices" }
|
|
gdbstub_arch = { version = "0.2.2", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
kernel_loader = { path = "../kernel_loader" }
|
|
libc = "*"
|
|
minijail = "*"
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "*"
|
|
base = { path = "../base" }
|
|
acpi_tables = {path = "../acpi_tables" }
|
|
vm_control = { path = "../vm_control" }
|
|
vm_memory = { path = "../vm_memory" }
|
|
once_cell = "1.7.2"
|