blob: 81d5b677f787ff824b2e3f1d9e6ecdd737bbb001 [file] [log] [blame]
# Copyright 2017 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")
executable("bin") {
output_name = "tts_service"
sources = [
"main.cc",
"tts_service_impl.cc",
"tts_speaker.cc",
]
deps = [
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/media/fidl",
"//garnet/public/lib/tts/fidl",
"//third_party/flite",
"//zircon/public/lib/zx",
"//zircon/public/lib/vmo-utils",
]
}
package("tts_service") {
deps = [
":bin",
]
binary = "tts_service"
}