aboutsummaryrefslogtreecommitdiff
path: root/lib/blake2/BUILD.bazel
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2024-03-08 17:24:49 +0200
committeraqua <aqua@iserlohn-fortress.net>2024-03-08 22:00:07 +0200
commit20b97ea7c0dbbdc13800e12ff5c86c00c4a342ec (patch)
tree473281e5fc8b256827ce1a678573444e1aa5f669 /lib/blake2/BUILD.bazel
parentGenerate src/conf.h (diff)
downloadkernel-20b97ea7c0dbbdc13800e12ff5c86c00c4a342ec.tar.xz
Bazel build
Diffstat (limited to 'lib/blake2/BUILD.bazel')
-rw-r--r--lib/blake2/BUILD.bazel28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/blake2/BUILD.bazel b/lib/blake2/BUILD.bazel
new file mode 100644
index 0000000..4723ae6
--- /dev/null
+++ b/lib/blake2/BUILD.bazel
@@ -0,0 +1,28 @@
+package(default_visibility = ["//visibility:public"])
+
+cc_library(
+ name = "blake2s",
+ srcs = ["blake2s.c"],
+ hdrs = ["include/blake2s.h"],
+ includes = ["include"],
+ deps = select({
+ "@platforms//os:none": ["//lib/libk:k"],
+ "//conditions:default": [],
+ }),
+)
+
+cc_test(
+ name = "test_blake2s",
+ srcs = [
+ "blake2s_kat.h",
+ "blake2s_selftest.cc",
+ ],
+ target_compatible_with = select({
+ "@platforms//os:none": ["@platforms//:incompatible"],
+ "//conditions:default": [],
+ }),
+ deps = [
+ "//lib/blake2:blake2s",
+ "@googletest//:gtest_main",
+ ],
+)