blob: 316517225d798896ee3d576336a0e2ea8ad8339b [file] [log] [blame]
# Copyright 2022 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")
source_set("lib") {
sources = [
"echo_client_app.cc",
"echo_client_app.h",
]
public_deps = [
"//sdk/lib/sys/cpp",
"//src/testing/fidl:placeholders_hlcpp",
]
}
executable("bin") {
output_name = "echo_client_placeholder"
sources = [ "echo_client.cc" ]
deps = [
":lib",
"//sdk/lib/async-default",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
"//sdk/lib/sys/cpp",
"//src/testing/fidl:placeholders_hlcpp",
]
}