Revision 44b8960e774f22f9122f84a8109c12f328af8de5 authored by Veronika Slivova on 04 July 2018, 15:24:16 UTC, committed by Tink Team on 06 July 2018, 21:20:21 UTC
restrictive

PiperOrigin-RevId: 203283070
GitOrigin-RevId: 058f0b9a347ec73ba0ae1ee38679c0739a8eec89
1 parent 57c0a72
Raw File
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"])

# All go packages use github.com/google/tink prefix
load("@io_bazel_rules_go//go:def.bzl", "gazelle")

# bazel rule definition
gazelle(
    name = "gazelle",
    command = "update",
    prefix = "github.com/google/tink",
)

back to top