From 8467586fc5546debe7b672fcebbf2b13aa6fa06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Thu, 28 Dec 2017 18:46:36 +0000 Subject: Experiment: add some basic bazel support. This only defines targets needed to run test_common through bazel. Adding extra support for pyserial and other dependencies will take some time but would help with building a fully-hermetic test set. --- third_party/six.BUILD | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 third_party/six.BUILD (limited to 'third_party') diff --git a/third_party/six.BUILD b/third_party/six.BUILD new file mode 100644 index 0000000..a1b2f7b --- /dev/null +++ b/third_party/six.BUILD @@ -0,0 +1,14 @@ +# Description: +# Six provides simple utilities for wrapping over differences between Python 2 +# and Python 3. + +licenses(["notice"]) # MIT + +exports_files(["LICENSE"]) + +py_library( + name = "six", + srcs = ["six.py"], + srcs_version = "PY2AND3", + visibility = ["//visibility:public"], +) -- cgit v1.2.3