• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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