blob: e665f2fd1aa9b2be28dee4184a6083cd66fac7c5 [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"
meta = [
{
path = rebase_path("../meta/echo2_server.cmx")
dest = "echo2_server_c.cmx"
},
]
}