You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
327 B

2 months ago
  1. load("@py_deps//:requirements.bzl", "requirement")
  2. py_library(
  3. name = "gbench",
  4. srcs = glob(["gbench/*.py"]),
  5. deps = [
  6. requirement("numpy"),
  7. requirement("scipy"),
  8. ],
  9. )
  10. py_binary(
  11. name = "compare",
  12. srcs = ["compare.py"],
  13. python_version = "PY2",
  14. deps = [
  15. ":gbench",
  16. ],
  17. )