blob: 041847937a126882a2553bbec14203943b842ad6 [file] [log] [blame] [edit]
# Copyright 2022 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 = "echo_server_cpp"
sources = [ "main.cc" ]
deps = [
"//examples/components/routing/fidl:echo",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/inspect/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
fuchsia_component("echo_server_component") {
component_name = "echo_server"
manifest = "meta/echo_server.cml"
deps = [ ":bin" ]
}