blob: 8973af24a420767ed90fc5a1d8d6572cd8b0d4dd [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") {
deprecated_bare_package_url = "//build"
deps = [
":bin",
]
binary = "tts_service"
meta = [
{
path = rebase_path("meta/tts_service.cmx")
dest = "tts_service.cmx"
},
]
}