From b78bbd5dd53ecaeb8a736b69ecd3f014232da1d4 Mon Sep 17 00:00:00 2001 From: David Chen Date: Wed, 16 Mar 2016 13:17:57 +0000 Subject: Add Python protobuf to Bazel third_party and move all protobuf targets into //third_party/protobuf. -- MOS_MIGRATED_REVID=117336377 --- third_party/py/six/BUILD | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 third_party/py/six/BUILD (limited to 'third_party/py') 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"], +) -- cgit v1.2.3