| # 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/rust/rustc_library.gni") | |
| group("rust") { | |
| public_deps = [ ":userboot" ] | |
| } | |
| rustc_library("userboot") { | |
| edition = "2024" | |
| sources = [ "src/lib.rs" ] | |
| public_deps = [ ".." ] # Public to propagate static linking configs. | |
| deps = [ | |
| "//sdk/lib/c/rust", | |
| "//sdk/rust/zx", | |
| ] | |
| } |