mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
c855a3824b
This CL adds pci-hotplug feature flag to crosvm-control FFI. This flag is required since otherwise vm_control for crosvm_control target would be built without pci-hotplug flag. BUG=b/294777126 TEST=manual VmConciergeClient DBus call workds with crrev/c/4798333 Change-Id: Iad4a7f47185025709bb2ae5029d42a06df8f555b Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5098244 Reviewed-by: Alexandre Courbot <acourbot@chromium.org> Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Commit-Queue: Ningyuan Wang <ningyuan@google.com>
24 lines
515 B
TOML
24 lines
515 B
TOML
[package]
|
|
name = "crosvm_control"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
pci-hotplug = ["vm_control/pci-hotplug"]
|
|
registered_events = ["vm_control/registered_events"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
libc = "0.2.65"
|
|
swap = { path = "../swap", default-features = false }
|
|
vm_control = { path = "../vm_control", features = [ "balloon" ] }
|
|
|
|
[build-dependencies]
|
|
anyhow = "*"
|
|
cbindgen = "0.24.3"
|
|
cc = "*"
|
|
tempfile = "*"
|