blob: ca0cb564c5964c8efe6cbf152713ba5f76da54d9 [file] [log] [blame]
# 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/package.gni")
executable("unified_echo_client") {
sources = [
"main.cc",
]
deps = [
"//examples/fidl/fuchsia.examples",
"//sdk/lib/sys/cpp",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
]
}
package("echo_client") {
deps = [
":unified_echo_client",
]
binaries = [
{
name = "unified_echo_client"
dest = "echo_client"
},
]
meta = [
{
path = rebase_path("../meta/echo_client.cmx")
dest = "echo_client.cmx"
},
]
}