mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
9dc9210d3d
This is useful for projects that build in lock-step with crosvm and want to control a VM without having to `dlopen()` or embed `libcrosvm_control.so`. TEST=./tools/presubmit --quick BUG=none Change-Id: I9407c3e1783f55e399358bdf291a999ee8dc8892 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3864925 Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Christian Blichmann <cblichmann@google.com> Tested-by: Christian Blichmann <cblichmann@google.com>
17 lines
306 B
TOML
17 lines
306 B
TOML
[package]
|
|
name = "crosvm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
vm_control = { path = "../vm_control" }
|
|
libc = "0.2.65"
|
|
|
|
[build-dependencies]
|
|
anyhow = "*"
|
|
cbindgen = "0.20.0"
|