summaryrefslogtreecommitdiff
path: root/asl/memory/BUILD.bazel
blob: 1d90c3bce2a3bb98f8f8130ac24616112a6ca744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause

cc_library(
    name = "memory",
    hdrs = [
        "allocator.hpp",
        "layout.hpp",
        "memory.hpp",
    ],
    srcs = [
        "allocator.cpp",
    ],
    deps = [
        "//asl/base",
    ],
    visibility = ["//visibility:public"],
)