• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2025 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7#     https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
16
17package(default_visibility = ["//visibility:public"])
18
19rust_library(
20    name = "list",
21    srcs = [
22        "lib.rs",
23        "unsafe_list.rs",
24    ],
25    tags = ["kernel"],
26    deps = ["//pw_kernel/lib/foreign_box"],
27)
28
29rust_test(
30    name = "unsafe_list_test",
31    srcs = ["tests/unsafe_list_test.rs"],
32    tags = ["kernel"],
33    use_libtest_harness = False,
34    deps = [
35        ":list",
36        "//pw_kernel/lib/unittest",
37        "//pw_kernel/target:linker_script",
38    ],
39)
40
41rust_test(
42    name = "foreign_list_test",
43    srcs = ["tests/foreign_list_test.rs"],
44    tags = ["kernel"],
45    use_libtest_harness = False,
46    deps = [
47        ":list",
48        "//pw_kernel/lib/foreign_box",
49        "//pw_kernel/lib/unittest",
50        "//pw_kernel/target:linker_script",
51    ],
52)
53