File size: 445 Bytes
2d8be8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
load("@rules_python//python:py_binary.bzl", "py_binary")
load("@rules_python//python:py_library.bzl", "py_library")

package(default_visibility = ["//visibility:public"])

py_library(
    name = "common",
    srcs = ["common.py"],
)

py_binary(
    name = "merge",
    srcs = ["merge.py"],
    imports = ["."],
    deps = [":common"],
)

py_binary(
    name = "reverse",
    srcs = ["reverse.py"],
    imports = ["."],
    deps = [":common"],
)