blob: ad50e0af80555cd8250e52f230f3e16fcfdb7447 [file] [log] [blame]
# Copyright 2017 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("echo_server_cpp_bin") {
output_name = "echo_server_cpp"
sources = [
"echo_server.cc",
]
deps = [
"//garnet/examples/fidl/services",
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fidl/cpp/bindings",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
]
}
package("echo_server_cpp") {
system_image = true
deps = [
":echo_server_cpp_bin",
]
binaries = [ {
name = "echo_server_cpp"
} ]
}