forked from tink-crypto/tink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
39 lines (33 loc) · 812 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
# 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("@rules_python//python:defs.bzl", "py_library")
package(default_visibility = ["//:__subpackages__"])
licenses(["notice"])
exports_files([
"LICENSE",
"README.md",
"__init__.py",
])
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",
],
)