crosvm/win_audio/Cargo.toml
Richard Zhang 24ed80fd99 win_audio: Upstream Windows audio backend code
The most notable changes are:

* Playback Async support
* Audio Client flags to hide app from SndVol when audio session has
  expired
* Updates to audio_streams and cros_async crates for playback async
  support

BUG=b:256655413
TEST=Verified to work downstream

Change-Id: Ifbe9a15791feaa41d6e1d5eaf2c5824b2c7c25b8
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3994882
Commit-Queue: Richard Zhang <rizhang@google.com>
Reviewed-by: Noah Gold <nkgold@google.com>
2022-11-02 21:07:37 +00:00

24 lines
531 B
TOML

[package]
name = "win_audio"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[target.'cfg(windows)'.dependencies]
async-trait = "0.1.36"
audio_streams = { path = "../common/audio_streams"}
base = { path = "../base" }
cros_async = { path = "../cros_async" }
libc = "*"
win_util = { path = "../win_util" }
winapi = "*"
wio = "*"
sync = { path = "../common/sync" }
thiserror = "*"
metrics = { path = "../metrics"}
once_cell = "1.7.2"
[build-dependencies]
anyhow = "*"
prebuilts = { path = "../prebuilts" }