aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py
diff options
context:
space:
mode:
authorGravatar David Chen <dzc@google.com>2016-03-16 13:17:57 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-03-17 10:03:45 +0000
commitb78bbd5dd53ecaeb8a736b69ecd3f014232da1d4 (patch)
tree0f13b04b4b05d90c2aab1a881ec73c631fca6b20 /third_party/py
parentc4d448fb1841dc007c8053c9940a195634425fb1 (diff)
Add Python protobuf to Bazel third_party and move all protobuf targets into
//third_party/protobuf. -- MOS_MIGRATED_REVID=117336377
Diffstat (limited to 'third_party/py')
-rw-r--r--third_party/py/six/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/py/six/BUILD b/third_party/py/six/BUILD
new file mode 100644
index 0000000000..39ce3a1fa8
--- /dev/null
+++ b/third_party/py/six/BUILD
@@ -0,0 +1,15 @@
+licenses(["notice"])
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//third_party:__pkg__"],
+)
+
+py_library(
+ name = "six",
+ srcs = ["six.py"],
+ imports = ["."],
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+)