blob: bec643b8a014899d1ffb1470615040b0645b2525 [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/components.gni")
group("tts") {
testonly = true
deps = [
":bin",
":tts_service",
]
}
executable("bin") {
output_name = "tts_service"
sources = [
"main.cc",
"tts_service_impl.cc",
"tts_speaker.cc",
]
deps = [
"//sdk/fidl/fuchsia.media",
"//sdk/fidl/fuchsia.tts",
"//sdk/lib/sys/cpp",
"//src/lib/fsl",
"//third_party/flite",
"//zircon/public/lib/zx",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fzl",
]
}
fuchsia_package_with_single_component("tts_service") {
manifest = "meta/tts_service.cmx"
deps = [ ":bin" ]
}