blob: 45a0c2c2d2c7490ed8d7c5acddd07f6b973770e0 [file] [log] [blame] [edit]
# Copyright 2023 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") {
testonly = true
edition = "2021"
sources = [
"src/error.rs",
"src/lib.rs",
"src/service.rs",
]
deps = [
"//sdk/fidl/fuchsia.component.sandbox:fuchsia.component.sandbox_rust",
"//sdk/fidl/fuchsia.io:fuchsia.io_rust",
"//sdk/fidl/fuchsia.testing.harness:fuchsia.testing.harness_rust",
"//sdk/rust/zx",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component-test:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:thiserror",
]
}
group("tests") {
testonly = true
deps = [ ":realm_proxy" ]
}