blob: 45bc0f26c60d3d96c18ee297e15b85cafe7180b8 [file] [log] [blame]
# Copyright 2021 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")
import("//build/rust/rustc_binary.gni")
import("//build/rust/rustc_test.gni")
rustc_binary("publisher_bin") {
edition = "2021"
name = "publisher"
source_root = "publisher.rs"
deps = [
"//sdk/fidl/fuchsia.process.lifecycle:fuchsia.process.lifecycle_rust",
"//src/lib/diagnostics/inspect/runtime/rust",
"//src/lib/diagnostics/inspect/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-runtime",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
sources = [ "publisher.rs" ]
}
rustc_test("diagnostics_test_bin") {
name = "diagnostics_test"
source_root = "main.rs"
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.component:fuchsia.component_rust",
"//src/lib/diagnostics/reader/rust",
"//src/lib/diagnostics/testing/diagnostics-assertions/rust:diagnostics-assertions",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component-test",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
sources = [ "main.rs" ]
}
fuchsia_component("diagnostics-publisher") {
component_name = "diagnostics-publisher"
testonly = true
manifest = "meta/diagnostics-publisher.cml"
deps = [ ":publisher_bin" ]
}
fuchsia_component("test-root") {
component_name = "test-root"
testonly = true
manifest = "meta/test-root.cml"
deps = [ ":diagnostics_test_bin" ]
}
rustc_test("logger_test_bin") {
name = "logger_bin"
source_root = "logger.rs"
edition = "2021"
deps = [
"//src/lib/fuchsia",
"//third_party/rust_crates:tracing",
]
sources = [ "logger.rs" ]
}
fuchsia_unittest_component("logger-test-generated-manifest") {
component_name = "logger-test-generated-manifest"
deps = [ ":logger_test_bin" ]
}
fuchsia_test_package("test-manager-diagnostics-tests") {
test_components = [
":test-root",
":logger-test-generated-manifest",
]
deps = [ ":diagnostics-publisher" ]
}
group("tests") {
testonly = true
deps = [ ":test-manager-diagnostics-tests" ]
}