| 12345678910111213 |
- load("@rules_python//python:defs.bzl", "py_binary", "py_test")
- py_binary(
- name = "chrome-tab-switcher",
- srcs = ["chrome-tab-switcher.py"],
- visibility = ["//visibility:public"],
- )
- py_test(
- name = "chrome-tab-switcher_test",
- srcs = ["chrome-tab-switcher_test.py"],
- main = "chrome-tab-switcher_test.py",
- )
|