blob: 3fbc361cdf4ce9054ed59bab4837f28d60a7d2c6 [file] [log] [blame] [edit]
# Copyright 2019 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")
executable("bin") {
output_name = "fidl_echo_llcpp_server_async"
sources = [ "main.cc" ]
deps = [
"//examples/fidl/fuchsia.examples:fuchsia.examples_llcpp",
"//sdk/lib/fdio",
"//sdk/lib/svc",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/fidl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
fuchsia_component("echo-server") {
manifest = "server.cmx"
deps = [ ":bin" ]
}
fuchsia_package("server") {
package_name = "echo-llcpp-server-async"
deps = [ ":echo-server" ]
}