mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
a0e381b0d8
This CL changes the output format of `crosvm balloon_stats` command to JSON to ease parsing the result. BUG=b:181267848 TEST=built and checked the output of crosvm balloon_stats Change-Id: I4af40237109efdd02b5b70375ef8aa706cf5de55 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2914247 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Hikaru Nishida <hikalium@chromium.org> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Reviewed-by: Charles William Dick <cwd@google.com>
21 lines
532 B
TOML
21 lines
532 B
TOML
[package]
|
|
name = "vm_control"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
gdb = ["gdbstub"]
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
data_model = { path = "../data_model" }
|
|
gdbstub = { version = "0.4.0", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
libc = "*"
|
|
resources = { path = "../resources" }
|
|
rutabaga_gfx = { path = "../rutabaga_gfx"}
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
sync = { path = "../sync" }
|
|
vm_memory = { path = "../vm_memory" }
|