benchmark/tools/BUILD.bazel

20 lines
334 B
Python

load("@tools_pip_deps//:requirements.bzl", "requirement")
py_library(
name = "gbench",
srcs = glob(["gbench/*.py"]),
deps = [
requirement("numpy"),
requirement("scipy"),
],
)
py_binary(
name = "compare",
srcs = ["compare.py"],
python_version = "PY3",
deps = [
":gbench",
],
)