blob: 37666bf8a78428b45e33ee0db05c088022bd8aaa [file] [log] [blame]
# Copyright 2025 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("mock-health-verification") {
version = "0.0.1"
edition = "2021"
with_unit_tests = true
deps = [
"//sdk/rust/zx",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/sys/pkg/fidl/fuchsia.update.verify:fuchsia.update.verify_rust",
"//third_party/rust_crates:futures",
]
sources = [ "src/lib.rs" ]
configs += [ "//build/config/rust/lints:clippy_warn_all" ]
}
fuchsia_unittest_package("mock-health-verification-tests") {
deps = [ ":mock-health-verification_test" ]
}
group("hermetic_tests") {
testonly = true
deps = [ ":mock-health-verification-tests" ]
}