blob: 0e261f30bbc63f319e782c433a85c87b824ab111 [file] [log] [blame] [edit]
# Copyright 2021 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_test.gni")
rustc_test("bin") {
name = "rust_sample_realm"
# [START realm_builder_dep_rust]
deps = [
"//src/lib/fuchsia-component-test",
# [START_EXCLUDE]
"//examples/components/routing/fidl:echo-rustc",
"//sdk/fidl/fuchsia.logger:fuchsia.logger-rustc",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
# [END_EXCLUDE]
]
# [END realm_builder_dep_rust]
sources = [ "src/lib.rs" ]
}