aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/BUILD
blob: 9d52fd68483bbc45700f9b6eabb770d92e9ca495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
filegroup(
    name = "srcs",
    srcs = glob(["*.py"]) + [
        "BUILD",
        "//examples/py_native/fibonacci:srcs",
    ],
    visibility = ["//examples:__pkg__"],
)

py_binary(
    name = "bin",
    srcs = ["bin.py"],
    deps = [
        ":lib",
        "//examples/py_native/fibonacci",
    ],
)

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

py_test(
    name = "test",
    srcs = ["test.py"],
    deps = [
        ":lib",
        "//examples/py_native/fibonacci",
    ],
)

py_test(
    name = "fail",
    srcs = ["fail.py"],
    deps = [":lib"],
)