blob: 92c7351fefe468471ecd15782f1e18a67e1298f4 [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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("test_utils_lib") {
name = "test_utils_lib"
edition = "2021"
source_root = "lib.rs"
testonly = true
deps = [
"//src/lib/fuchsia-async",
"//src/sys/component_manager/tests/fidl:components_rust",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
]
sources = [
"lib.rs",
"trigger_capability.rs",
]
}