summaryrefslogtreecommitdiff
path: root/asl/types/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-05-14 00:02:39 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-05-14 00:41:51 +0200
commit088e03708afe4145a1903f0b20c53cab1899ad50 (patch)
treead31304d28c12ede106fe9fc821d37fe2110bef6 /asl/types/BUILD.bazel
parent5bca42b04941ce132426100b5f99da096b5402b6 (diff)
Add array
Diffstat (limited to 'asl/types/BUILD.bazel')
-rw-r--r--asl/types/BUILD.bazel22
1 files changed, 22 insertions, 0 deletions
diff --git a/asl/types/BUILD.bazel b/asl/types/BUILD.bazel
index 16a2a7a..134601b 100644
--- a/asl/types/BUILD.bazel
+++ b/asl/types/BUILD.bazel
@@ -7,6 +7,18 @@ package(
)
cc_library(
+ name = "array",
+ hdrs = [
+ "array.hpp",
+ ],
+ deps = [
+ "//asl/base",
+ "//asl/types:span",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_library(
name = "box",
hdrs = [
"box.hpp",
@@ -125,6 +137,16 @@ cc_test(
)
cc_test(
+ name = "array_tests",
+ srcs = ["array_tests.cpp"],
+ deps = [
+ "//asl/tests:utils",
+ "//asl/testing",
+ "//asl/types:array",
+ ],
+)
+
+cc_test(
name = "box_tests",
srcs = ["box_tests.cpp"],
deps = [