blob: 85d3f9c1278990c749dee73dde9cc892cb0a6c7d [file] [log] [blame]
# Copyright 2018 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("bin") {
output_name = "echo2_server_cpp"
sources = [
"echo2_server.cc",
]
deps = [
"//garnet/examples/fidl/services:echo2",
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fidl/cpp",
"//zircon/public/lib/async-default",
"//zircon/public/lib/async-loop-cpp",
]
}
package("echo2_server_cpp") {
deps = [
":bin",
]
binary = "echo2_server_cpp"
}