blob: b1bb75ec4cce18124e0f50ad496812630208b544 [file] [log] [blame]
# 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/rust/rustc_binary.gni")
rustc_binary("logging_component") {
name = "logging_component"
source_root = "./logging_component.rs"
edition = "2018"
deps = [
"//src/lib/syslog/rust:syslog",
"//third_party/rust_crates:log",
]
}
group("tests") {
testonly = true
public_deps = [
":logging_component",
"cpp",
"cpp:logs_integration_cpp_tests",
"go",
"go/src:logs_integration_go_tests",
"rust",
"rust:bin",
"rust/puppet:bin",
]
}