blob: d4138934a8d824fa3000c6d936b2b151891cd780 [file]
# Copyright 2026 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("userfaultfd") {
name = "starnix-modules-userfaultfd"
edition = "2024"
version = "0.1.0"
source_root = "lib.rs"
sources = [
"lib.rs",
"syscalls.rs",
"userfault_file.rs",
]
configs += [ "//src/starnix/build:kernel_library_config" ]
deps = [
"//src/starnix/kernel/core",
"//src/starnix/lib/linux_uapi",
"//src/starnix/lib/starnix_logging",
"//src/starnix/lib/starnix_syscalls",
"//src/starnix/lib/starnix_uapi",
"//third_party/rust_crates:static_assertions",
]
}