mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 20:19:07 +00:00
Executes the script in https://crrev.com/c/3530502 BUG=b:223206469 TEST=presubmit Change-Id: Ibeffdc8de0b2270f070e60bb2de8d9fdc78a2a6d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3530503 Reviewed-by: Vikram Auradkar <auradkar@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
26 lines
699 B
TOML
26 lines
699 B
TOML
[package]
|
|
name = "arch"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
power-monitor-powerd = ["power_monitor/powerd"]
|
|
gdb = ["gdbstub_arch"]
|
|
|
|
[dependencies]
|
|
acpi_tables = { path = "../acpi_tables" }
|
|
base = { path = "../base" }
|
|
devices = { path = "../devices" }
|
|
gdbstub_arch = { version = "0.1.0", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
libc = "*"
|
|
minijail = "*"
|
|
power_monitor = { path = "../power_monitor" }
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "1.0.20"
|
|
vm_control = { path = "../vm_control" }
|
|
vm_memory = { path = "../vm_memory" }
|