aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/py_native/BUILD')
-rw-r--r--examples/py_native/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/py_native/BUILD b/examples/py_native/BUILD
new file mode 100644
index 0000000000..3d8de94251
--- /dev/null
+++ b/examples/py_native/BUILD
@@ -0,0 +1,10 @@
+py_binary(
+ name = "bin",
+ srcs = ["bin.py"],
+ deps = [":lib"],
+)
+
+py_library(
+ name = "lib",
+ srcs = ["lib.py"],
+)