blob: 65aca3e1c27b240bded2a4facca11a88c79f7622 [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/host.gni")
import("//build/rust/rustc_library.gni")
if (is_host) {
rustc_library("partitions_config") {
edition = "2021"
name = "assembly_partitions_config"
version = "0.1.0"
with_unit_tests = true
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:serde_json5",
]
sources = [
"src/lib.rs",
"src/partitions_config.rs",
]
}
group("host_tests") {
testonly = true
deps = [ ":partitions_config_test" ]
}
}