aboutsummaryrefslogtreecommitdiff
path: root/tools/BUILD.bazel
blob: 8ef6a865980f7f490d30752f439d80a8f2a926c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"],
    imports = ["."],
    python_version = "PY3",
    deps = [
        ":gbench",
    ],
)