diff options
Diffstat (limited to 'asl/types/BUILD.bazel')
-rw-r--r-- | asl/types/BUILD.bazel | 22 |
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 = [ |