Revision 0d03d04084be1c7ee7744efad35d3059c0de41e8 authored by Quan Nguyen on 12 July 2018, 02:43:34 UTC, committed by Tink Team on 12 July 2018, 22:19:08 UTC
PiperOrigin-RevId: 204232671
GitOrigin-RevId: 33ca66ee5ff8124dd3951ea390c5c8572b058d6c
1 parent 1f31da9
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