blob: 46fe29d9ee021381fa0d3a0ffc22598ecb5751a9 [file] [log] [blame]
# Copyright 2023 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 = "persistence-config"
edition = "2021"
with_unit_tests = true
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:glob",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:regex",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_derive",
"//third_party/rust_crates:serde_json5",
]
sources = [ "src/lib.rs" ]
test_deps = [ "//src/lib/fuchsia" ]
}
fuchsia_unittest_package("persistence-config-test") {
deps = [ ":lib_test" ]
}
group("tests") {
testonly = true
deps = [ ":persistence-config-test" ]
}