xref: /aosp_15_r20/external/google-benchmark/tools/BUILD.bazel (revision dbb99499c3810fa1611fa2242a2fc446be01a57c)
1load("@tools_pip_deps//:requirements.bzl", "requirement")
2
3py_library(
4    name = "gbench",
5    srcs = glob(["gbench/*.py"]),
6    deps = [
7        requirement("numpy"),
8        requirement("scipy"),
9    ],
10)
11
12py_binary(
13    name = "compare",
14    srcs = ["compare.py"],
15    imports = ["."],
16    python_version = "PY3",
17    deps = [
18        ":gbench",
19    ],
20)
21