blob: 95d57783fd7f758f4e1e70b0b8e3f7232c70df7f [file] [log] [blame]
# Copyright 2019 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/rust/rustc_library.gni")
rustc_library("test_util") {
with_unit_tests = true
edition = "2021"
testonly = true
test_deps = [ "//third_party/rust_crates:lazy_static" ]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("rust_test_util_tests") {
deps = [ ":test_util_test" ]
}
group("tests") {
testonly = true
deps = [ ":rust_test_util_tests" ]
}