aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py/abseil/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/py/abseil/BUILD')
-rw-r--r--third_party/py/abseil/BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/py/abseil/BUILD b/third_party/py/abseil/BUILD
new file mode 100644
index 0000000000..5bf0a22e4c
--- /dev/null
+++ b/third_party/py/abseil/BUILD
@@ -0,0 +1,16 @@
+licenses(["notice"])
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//visibility:public"],
+)
+
+py_library(
+ name = "abseil",
+ deps = ["//third_party/py/six"],
+ srcs = glob(["**/*.py"]),
+ srcs_version = "PY2AND3",
+ imports = ["."],
+ visibility = ["//visibility:public"],
+)