blob: 11195d61f7356d82f120d1c6cb3bdab5c8966ab4 [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/fidl/fuchsia.media",
"//garnet/public/fidl/fuchsia.tts",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fsl",
"//third_party/flite",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fzl",
"//zircon/public/lib/zx",
]
}
package("tts_service") {
deps = [
":bin",
]
binary = "tts_service"
}