blob: a83015736405847bb95320b084158e1970836a99 [file] [log] [blame]
# Copyright 2018 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 = "echo2_server_c"
sources = [
"echo_server.c",
]
deps = [
"//garnet/public/lib/svc",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fdio",
]
}
package("echo2_server_c") {
deps = [
":bin",
]
binary = "echo2_server_c"
}