summaryrefslogtreecommitdiff
path: root/runtime/BUILD
blob: ed2610b329924ac17e28b029367e2a7f32fd33b5 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package(default_visibility = ["//:__subpackages__"])

py_library(
    name = "runtime",
    srcs = ["runtime.py"],
    deps = [
        ":cpp_structure",
        ":interactive",
        ":matcher",
        ":production_rule",
    ],
)

py_library(
    name = "cpp_structure",
    srcs = ["cpp_structure.py"],
    deps = [
        ":utils",
    ],
)

py_library(
    name = "production_rule",
    srcs = ["production_rule.py"],
    deps = [
        ":assignment",
        ":pattern",
        ":utils",
    ],
)

py_library(
    name = "interactive",
    srcs = ["interactive.py"],
    deps = [
        ":shadow_input",
    ],
)

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

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

py_library(
    name = "assignment",
    srcs = ["assignment.py"],
    deps = [
        ":utils",
    ],
)

py_library(
    name = "pattern",
    srcs = ["pattern.py"],
    deps = [
        ":utils",
    ],
)

py_library(
    name = "matcher",
    srcs = ["matcher.py"],
    deps = [
        ":utils",
    ],
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback