blob: 4cfa25ae45e4d47703008ad9683a067b722f8b86 [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/rust/rustc_library.gni")
rustc_library("ffx_audio_common") {
name = "ffx_audio_common"
version = "0.1.0"
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.audio.controller:fuchsia.audio.controller_rust",
"//src/developer/ffx/lib/target/holders:lib",
"//src/developer/ffx/lib/timeout:lib",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/media/audio/lib/rust",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:blocking",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:serde",
]
sources = [ "src/lib.rs" ]
## Uncomment this line, to enable all lints during local development.
# configs += [ "//build/config/rust/lints:clippy_warn_all" ]
}