blob: b3592eb034cdf430a6bace56e16f9c5bed5fefd5 [file] [log] [blame] [edit]
# 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/host.gni")
import("//build/rust/rustc_library.gni")
import("//build/zircon/tools.gni")
if (is_host) {
rustc_library("minfs") {
name = "assembly_minfs"
version = "0.1.0"
with_unit_tests = true
deps = [
"//src/lib/assembly/tool",
"//src/lib/assembly/util",
"//third_party/rust_crates:anyhow",
]
sources = [
"src/lib.rs",
"src/minfs.rs",
]
test_deps = [ "//third_party/rust_crates:serde_json" ]
}
group("host_tests") {
testonly = true
deps = [ ":minfs_test" ]
}
}