blob: ede8809893e2cfaf64c41d1afda53f690fd92c38 [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")
import("//tools/cmc/build/expect_includes.gni")
rustc_library("realm_proxy_client") {
testonly = true
edition = "2021"
sources = [
"src/error.rs",
"src/lib.rs",
]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_rust",
"//sdk/fidl/fuchsia.testing.harness:fuchsia.testing.harness_rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
}
group("client") {
testonly = true
public_deps = [ ":realm_proxy_client" ]
}