blob: e9ae0384879eedd566c0acb329e0d69c74499347 [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")
executable("bin") {
output_name = "server_bin"
output_dir = target_out_dir + "/cpp_wire"
sources = [ "main.cc" ]
deps = [
"//examples/fidl/new/canvas/baseline/fidl:examples.canvas.baseline_cpp",
"//sdk/lib/async-loop",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/component/outgoing/cpp",
"//sdk/lib/fdio",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl",
]
}