blob: be7dfb1914c934f5a11548a626345169abb516ad [file]
# Copyright 2020 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 = "inspect_cpp_codelab_fizzbuzz_bin"
sources = [ "main.cc" ]
deps = [
"//examples/diagnostics/inspect/codelab/fidl:fuchsia.examples.inspect",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/inspect/cpp",
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
fuchsia_component("inspect_cpp_codelab_fizzbuzz") {
manifest = "meta/inspect_cpp_codelab_fizzbuzz.cmx"
deps = [ ":bin" ]
}