From ba7b03f26f60a428c440c9042adf2643d01f73e5 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Mon, 19 Jun 2017 14:23:24 -0700 Subject: Install codegen in bazel workspace to allow docs tests to run. PiperOrigin-RevId: 159477794 --- third_party/codegen.BUILD | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 third_party/codegen.BUILD (limited to 'third_party/codegen.BUILD') diff --git a/third_party/codegen.BUILD b/third_party/codegen.BUILD new file mode 100644 index 0000000000..df436c8163 --- /dev/null +++ b/third_party/codegen.BUILD @@ -0,0 +1,16 @@ +# -*- mode: python; -*- +# +# Description: +# Extension to ast that allow ast -> python code generation. + +package(default_visibility = ["//visibility:public"]) + +licenses(["notice"]) # New BSD + +exports_files(["LICENSE"]) + +py_library( + name = "com_github_andreif_codegen", + srcs = glob(["codegen.py"]), + srcs_version = "PY2AND3", +) -- cgit v1.2.3