diff options
Diffstat (limited to 'asl/hashing/BUILD.bazel')
-rw-r--r-- | asl/hashing/BUILD.bazel | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/asl/hashing/BUILD.bazel b/asl/hashing/BUILD.bazel index 18be389..ff23400 100644 --- a/asl/hashing/BUILD.bazel +++ b/asl/hashing/BUILD.bazel @@ -2,6 +2,10 @@ # # SPDX-License-Identifier: BSD-3-Clause +package( + default_applicable_licenses = ["//:license"], +) + cc_library( name = "hashing", hdrs = [ @@ -14,6 +18,9 @@ cc_library( "//asl/base", "//asl/types:span", ], + applicable_licenses = [ + "//vendor/cityhash:license", + ], visibility = ["//visibility:public"], ) |