blob: 6c99615fac581455ee40dea50d446f1dd1523f36 [file] [log] [blame]
# Copyright 2022 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("iquery_test_support") {
edition = "2021"
source_root = "src/lib.rs"
visibility = [
"//src/developer/ffx/plugins/inspect/*",
"//src/developer/remote-control/diagnostics-bridge/*",
"//src/diagnostics/iquery/*",
]
sources = [
"src/lib.rs",
"src/test_support.rs",
]
deps = [
"//sdk/fidl/fuchsia.component.decl:fuchsia.component.decl_rust",
"//sdk/fidl/fuchsia.io:fuchsia.io_rust",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2_rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/zircon/rust:fuchsia-zircon-status",
"//src/sys/lib/moniker",
"//third_party/rust_crates:byteorder",
"//third_party/rust_crates:futures",
]
}