diff options
Diffstat (limited to 'benchmarks/BUILD')
-rw-r--r-- | benchmarks/BUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmarks/BUILD b/benchmarks/BUILD new file mode 100644 index 000000000..dbadeeaf2 --- /dev/null +++ b/benchmarks/BUILD @@ -0,0 +1,9 @@ +package(licenses = ["notice"]) + +py_binary( + name = "benchmarks", + srcs = ["run.py"], + main = "run.py", + python_version = "PY3", + deps = ["//benchmarks/runner"], +) |