21 lines
368 B
Python
21 lines
368 B
Python
# Copyright 2025 Steven Le Rouzic
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "utils",
|
|
hdrs = [
|
|
"counting_allocator.hpp",
|
|
"types.hpp",
|
|
],
|
|
deps = [
|
|
"//asl/base",
|
|
"//asl/memory:allocator",
|
|
],
|
|
visibility = ["//asl:__subpackages__"],
|
|
)
|