blob: 3b2d62da27bb7e5d55b7fca02987a07360cfd70c [file]
# Copyright 2022 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("//src/developer/ffx/build/ffx_plugin.gni")
ffx_plugin("ffx_audio_gen") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_with_unit_tests = true
args_deps = [
"//src/developer/ffx/plugins/audio/utils:audio-utils",
"//third_party/rust_crates:anyhow",
]
deps = [
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/plugins/audio/utils:audio-utils",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:hound",
"//third_party/rust_crates:rand",
]
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
}