Revision 6539ec84ec6b99e99e9a6d6f48c0e509a9ddcc9c authored by Bartosz Przydatek on 22 June 2018, 21:08:09 UTC, committed by Tink Team on 27 June 2018, 19:02:48 UTC
PiperOrigin-RevId: 201738733
GitOrigin-RevId: 0a8ebc6357e27a68a2934db12ba75109ff18b573
1 parent 29eeebe
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