21 lines · plain
1# This file is licensed under the Apache License v2.0 with LLVM Exceptions.2# See https://llvm.org/LICENSE.txt for license information.3# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception4 5load("@rules_cc//cc:defs.bzl", "cc_library")6 7package(default_visibility = ["//visibility:public"])8 9licenses(["notice"])10 11filegroup(12 name = "siphash_header",13 srcs = ["include/siphash/SipHash.h"],14)15 16cc_library(17 name = "siphash",18 hdrs = [":siphash_header"],19 strip_include_prefix = "include",20)21