blob: ccf2a92e550398c5850ba24af12c5a3127943c71 [file] [log] [blame]
# 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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("lib") {
name = "mock-verifier"
version = "0.0.1"
edition = "2021"
with_unit_tests = true
deps = [
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/sys/pkg/fidl/fuchsia.update.verify:fuchsia.update.verify-rustc",
"//third_party/rust_crates:futures",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("mock-verifier-tests") {
deps = [ ":lib_test" ]
}
group("tests") {
testonly = true
deps = [ ":mock-verifier-tests" ]
}