summaryrefslogtreecommitdiff
path: root/asl/memory/BUILD.bazel
blob: 83dcfd0c82dc3bc644a4891853cc63e60e666d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause

package(
    default_applicable_licenses = ["//:license"],
)

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

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