blob: 173fb970246631b7e4c960fa72d9271d7385c058 [file] [edit]
# Copyright 2022 The Fuchsia Authors.
# 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/rust/rustc_binary.gni")
group("hermetic_tests") {
testonly = true
deps = [ ":rust-shared" ]
}
rustc_test("rust-bin") {
name = "rust_shared_test_bin"
edition = "2024"
sources = [ "src/lib.rs" ]
deps = [
"//examples/rust/dylib/rust-shared",
"//src/lib/fuchsia",
]
}
fuchsia_unittest_package("rust-shared") {
deps = [ ":rust-bin" ]
}