https://github.com/google/tink
Raw File
Tip revision: 7177e86a02fad4436bfaceee9d0f51a55b7e53ab authored by przydatek on 07 June 2019, 15:55:42 UTC
Updating info on key templates in C++-HOWTO.
Tip revision: 7177e86
BUILD.bazel
# Description:
#   Tink (https://github.com/google/tink) is a small crypto library that
#   provides a safe, simple, agile and fast way to accomplish some common
#   crypto tasks.

package(default_visibility = ["//tools/build_defs:internal_pkg"])

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

load("@bazel_gazelle//:def.bzl", "gazelle")

# gazelle:prefix github.com/google/tink
gazelle(name = "gazelle")

filegroup(
    name = "tink_version",
    srcs = ["tink_version.bzl"],
)

filegroup(
    name = "cmake_source_files",
    data = glob(["cmake/**"])
       + [
           "//cc",
           "CMakeLists.txt",
           "tink_version.cmake",
       ],
)
back to top