blob: f9d21bbefc24242b4a91426ad392388cb61c75ec [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")
fuchsia_component_manifest("manifest") {
component_name = "client"
manifest = "//examples/fidl/new/canvas/baseline/meta/client.cml"
}
fuchsia_structured_config_cpp_elf_lib("config") {
cm_label = ":manifest"
}
executable("bin") {
output_name = "client_bin"
output_dir = target_out_dir + "/cpp_natural"
sources = [ "main.cc" ]
deps = [
":config",
"//examples/fidl/new/canvas/baseline/fidl:examples.canvas.baseline_cpp",
"//sdk/lib/async-default",
"//sdk/lib/async-loop",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/syslog/cpp",
]
}