blob: 029265e12769b0ec9ce8ec9098851187c301dc08 [file] [log] [blame]
# Copyright 2024 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_library.gni")
rustc_library("test-realm-helpers") {
testonly = true
name = "test_realm_helpers"
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.tracing.controller:fuchsia.tracing.controller_rust",
"//sdk/rust/zx",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
]
sources = [
"src/constants.rs",
"src/lib.rs",
"src/tracing.rs",
]
}