blob: 80bf52564ea0d02e2592288014a7cb7e991d46d5 [file] [log] [blame]
# 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/components.gni")
import("//build/fidl/fidl.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("bin") {
testonly = true
name = "test_realm_proxy"
visibility = [ ":*" ]
edition = "2021"
sources = [ "src/main.rs" ]
deps = [
"fidl:fuchsia.pkg.test_rust",
"//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",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//src/storage/lib/vfs/rust:vfs",
"//src/sys/pkg/lib/fuchsia-pkg-testing",
"//src/sys/pkg/lib/package-directory",
"//src/sys/pkg/testing/blobfs-ramdisk",
"//src/testing/realm_proxy",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
}
rustc_binary("bin-fxblob") {
testonly = true
name = "test_realm_proxy_fxblob"
visibility = [ ":*" ]
edition = "2021"
sources = [ "src/main.rs" ]
deps = [
"fidl:fuchsia.pkg.test_rust",
"//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",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//src/storage/fxfs:fxfs_component",
"//src/storage/lib/vfs/rust:vfs",
"//src/sys/pkg/lib/fuchsia-pkg-testing",
"//src/sys/pkg/lib/package-directory",
"//src/sys/pkg/testing/blobfs-ramdisk",
"//src/testing/realm_proxy",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
features = [ "use_fxblob" ]
}
fuchsia_component("test_realm_proxy_component") {
testonly = true
visibility = [ ":*" ]
component_name = "default"
manifest = "meta/default.cml"
deps = [ ":bin" ]
}
fuchsia_component("test_realm_proxy_component_fxblob") {
testonly = true
visibility = [ ":*" ]
component_name = "default"
manifest = "meta/default-fxblob.cml"
deps = [ ":bin-fxblob" ]
}
fuchsia_package("test_realm_proxy") {
testonly = true
deps = [ ":test_realm_proxy_component" ]
}
fuchsia_package("test_realm_proxy_fxblob") {
testonly = true
deps = [ ":test_realm_proxy_component_fxblob" ]
}