blob: 02f69a55638d4cc8ce1d356fedf037cb0fcc8baf [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/rust/rustc_library.gni")
rustc_library("zbi") {
version = "0.1.0"
with_unit_tests = true
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:tempfile",
]
sources = [
"src/lib.rs",
"src/zbi.rs",
]
}
group("tests") {
testonly = true
deps = [ ":zbi_test($host_toolchain)" ]
}