forked from tink-crypto/tink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
43 lines (36 loc) · 925 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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.
load("@bazel_gazelle//:def.bzl", "gazelle")
load("@rules_python//python:defs.bzl", "py_library")
package(default_visibility = ["//:__subpackages__"])
licenses(["notice"])
exports_files([
"LICENSE",
"__init__.py",
])
# gazelle:prefix github.com/google/tink
gazelle(name = "gazelle")
filegroup(
name = "tink_version",
srcs = ["tink_version.bzl"],
visibility = ["//visibility:public"],
)
filegroup(
name = "cmake_source_files",
data = glob(["cmake/**"])
+ [
"//cc",
"CMakeLists.txt",
"tink_version.cmake",
],
)
py_library(
name = "tink_python",
srcs = ["__init__.py"],
visibility = ["//visibility:public"],
deps = [
"//python:tink",
],
)