blob: 040e36754be90d99944949cf92e9ffee1bbfd2ea [file] [log] [blame]
# Copyright 2025 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("pstore") {
name = "starnix-modules-pstore"
edition = "2021"
version = "0.1.0"
source_root = "lib.rs"
sources = [ "lib.rs" ]
configs += [ "//src/starnix/build:kernel_library_config" ]
deps = [
"//src/starnix/kernel/core",
"//src/starnix/lib/bootreason",
"//src/starnix/lib/starnix_sync",
"//src/starnix/lib/starnix_types",
"//src/starnix/lib/starnix_uapi",
]
}