aboutsummaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorGoogle Engineers <noreply@google.com>2018-02-26 14:49:04 -0800
committerThai Duong <thaidn@google.com>2018-02-27 15:02:36 -0800
commitd98847ce1319a9e1b9db034def264b4a97dfc45a (patch)
treed232afc12a908117092c2ab2ef58413639ecd956 /BUILD.bazel
parent216bd418f96e6322f23f1dd8f30da9aafb3aee32 (diff)
downloadtink-d98847ce1319a9e1b9db034def264b4a97dfc45a.tar.gz
Mass renaming BUILD to BUILD.bazel.
This allows to use BUILD for Blaze. Change-Id: I6fa84543b8ec927b0bdf5641f698b00d9c4de416 ORIGINAL_AUTHOR=Google Engineers <noreply@google.com> GitOrigin-RevId: c049652c44d7e575d04169caf19d85b0d5371181
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel21
1 files changed, 21 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 000000000..cc05a4086
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,21 @@
+# 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",
+)
+