BUILD 329 B

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