blob: 3c19c141865d010aad6cf2c223754b1259752463 [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"
},
]
}