mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
Makes proto-tube the default behavior when kiwi is enabled. BUG=b:244666222 TEST=tested downstream Change-Id: I4281dec4dc201ff981662498dae932b514c34050 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3881729 Commit-Queue: Vikram Auradkar <auradkar@google.com> Reviewed-by: Richard Zhang <rizhang@google.com> Auto-Submit: Vikram Auradkar <auradkar@google.com> Tested-by: Vikram Auradkar <auradkar@google.com>
38 lines
911 B
TOML
38 lines
911 B
TOML
[package]
|
|
name = "base"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
chromeos = []
|
|
kiwi = []
|
|
|
|
[dependencies]
|
|
audio_streams = { path = "../common/audio_streams" } # provided by ebuild
|
|
base_event_token_derive = { path = "base_event_token_derive", version = "*" }
|
|
data_model = { path = "../common/data_model" } # provided by ebuild
|
|
sync = { path = "../common/sync" } # provided by ebuild
|
|
|
|
cfg-if = "*"
|
|
chrono = "*"
|
|
env_logger = "0.9.0"
|
|
libc = "*"
|
|
log = "0.4"
|
|
once_cell = "1.7"
|
|
remain = "0.2"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
smallvec = "1.6.1"
|
|
tempfile = "3"
|
|
thiserror = "1.0.20"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
rand = "0.8"
|
|
winapi = "*"
|
|
win_util = { path = "../win_util"}
|
|
protobuf = { version = "*", features = [ "with-serde" ] }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
regex = "*"
|