blob: 1cf656d621f2d6f606a3ecffc19a872c650641fc [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("cpp-puppet") {
output_name = "sink_validator_cpp_puppet"
testonly = true
sources = [ "puppet.cc" ]
deps = [
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
"//sdk/lib/fidl",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//src/diagnostics/validator/logs/fidl:fuchsia.validate.logs_hlcpp",
]
}
fuchsia_component("component") {
component_name = "puppet"
testonly = true
manifest = "meta/puppet.cml"
deps = [ ":cpp-puppet" ]
}