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, 8 insertions, 2 deletions
diff --git a/examples/py_native/BUILD b/examples/py_native/BUILD
index d6fdfa957b..5a82223cf8 100644
--- a/examples/py_native/BUILD
+++ b/examples/py_native/BUILD
@@ -7,7 +7,10 @@ filegroup(
py_binary(
name = "bin",
srcs = ["bin.py"],
- deps = [":lib"],
+ deps = [
+ ":lib",
+ "//examples/py_native/fibonacci",
+ ],
)
py_library(
@@ -18,7 +21,10 @@ py_library(
py_test(
name = "test",
srcs = ["test.py"],
- deps = [":lib"],
+ deps = [
+ ":lib",
+ "//examples/py_native/fibonacci",
+ ],
)
py_test(