Chromium Code Reviews| Index: third_party/protobuf/six.BUILD |
| diff --git a/third_party/protobuf/six.BUILD b/third_party/protobuf/six.BUILD |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fb0b3604cdf443f88ec73de70c4e98e742bda46b |
| --- /dev/null |
| +++ b/third_party/protobuf/six.BUILD |
| @@ -0,0 +1,13 @@ |
| +genrule( |
| + name = "copy_six", |
| + srcs = ["six-1.10.0/six.py"], |
| + outs = ["six.py"], |
| + cmd = "cp $< $(@)", |
| +) |
| + |
| +py_library( |
| + name = "six", |
| + srcs = ["six.py"], |
| + srcs_version = "PY2AND3", |
| + visibility = ["//visibility:public"], |
| +) |