blob: e6b7a127197d3d21cd10cf6914b1b6913a493f31 [file] [log] [blame] [edit]
# Copyright 2020 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.
# [START imports]
import("//build/components.gni")
# [END imports]
executable("bin") {
output_name = "fidl_echo_hlcpp_client_sync"
sources = [ "main.cc" ]
# [START deps]
deps = [
"//examples/fidl/fuchsia.examples",
"//sdk/lib/sys/cpp",
]
# [END deps]
}
# [START rest]
fuchsia_component("echo-client") {
component_name = "echo_client"
manifest = "meta/client.cml"
deps = [ ":bin" ]
}
# [END rest]