BUILD 279 B

12345678910111213
  1. load("@rules_python//python:defs.bzl", "py_binary", "py_test")
  2. py_binary(
  3. name = "offset-fixer",
  4. srcs = ["offset-fixer.py"],
  5. visibility = ["//visibility:public"],
  6. )
  7. py_test(
  8. name = "offset-fixer_test",
  9. srcs = ["offset-fixer_test.py"],
  10. data = ["offset-fixer.py"],
  11. )