blob: 3b4d991c0a86ec23845566ab6e1ed86ada6cae79 [file] [log] [blame]
# Copyright 2024 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("zram") {
name = "starnix-modules-zram"
edition = "2021"
version = "0.1.0"
source_root = "lib.rs"
sources = [ "lib.rs" ]
configs += [ "//src/starnix/build:kernel_library_config" ]
deps = [
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_rust",
"//sdk/rust/zx",
"//src/starnix/kernel/core",
"//src/starnix/lib/starnix_logging",
"//src/starnix/lib/starnix_sync",
"//src/starnix/lib/starnix_uapi",
]
}