blob: 857f9a054098bd2c20a68976152e3e77ed82849c [file] [log] [blame]
# 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.
import("//build/components.gni")
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]
}
fuchsia_component("echo-client") {
manifest = "client.cmx"
deps = [ ":bin" ]
}
fuchsia_package("client_sync") {
package_name = "echo-hlcpp-client-sync"
deps = [ ":echo-client" ]
}