blob: 783b5f34365a97d6561acb113e9e0e9b1532e706 [file] [log] [blame]
# Copyright 2018 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/package.gni")
package("wav_recorder") {
deps = [
":wav_rec_bin",
]
binaries = [
{
name = "wav_recorder"
shell = true
},
]
}
executable("wav_rec_bin") {
output_name = "wav_recorder"
sources = [
"main.cc",
"wav_recorder.cc",
"wav_recorder.h",
]
deps = [
"//garnet/lib/media/wav_writer",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/media/audio",
"//sdk/fidl/fuchsia.media",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fit",
]
}