mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
d169a8d9ed
Moving the devices to their own module makes it easier to add tests that use them. Change-Id: I61bfef4037d16b20145b5fddce604835cdc4f67b Signed-off-by: Dylan Reid <dgreid@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/706559 Reviewed-by: Zach Reizner <zachr@chromium.org>
22 lines
499 B
TOML
22 lines
499 B
TOML
[package]
|
|
name = "crosvm"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = 'abort'
|
|
|
|
[dependencies]
|
|
devices = { path = "devices" }
|
|
io_jail = { path = "io_jail" }
|
|
kvm = { path = "kvm" }
|
|
sys_util = { path = "sys_util" }
|
|
kernel_loader = { path = "kernel_loader" }
|
|
libc = "=0.2.29"
|
|
byteorder = "=1.1.0"
|
|
vm_control = { path = "vm_control" }
|
|
data_model = { path = "data_model" }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
x86_64 = { path = "x86_64" }
|