blob: a50c958f57e11a691b5a32782dc9ab622159322e [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 = [
"//sdk/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"
},
]
}