summaryrefslogtreecommitdiff
path: root/examples/program_analysis/BUILD
blob: 6843d358ea8298e3dce4508526b544dfd70b04ff (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
py_binary(
    name = "api_migration",
    srcs = ["api_migration.py"],
    deps = [
        ":analyzelib",
        ":lazy_structure",
        "//:tactic_utils",
        "//examples/program_analysis/ui:serve",
        "//runtime",
    ],
)

py_binary(
    name = "transform_learning",
    srcs = ["transform_learning.py"],
    deps = [
        ":analyzelib",
        ":lazy_structure",
        "//:tactic_utils",
        "//examples/program_analysis/ui:serve",
        "//runtime",
    ],
)

py_binary(
    name = "program_understanding",
    srcs = ["program_understanding.py"],
    deps = [
        ":analyzelib",
        ":lazy_structure",
        "//:tactic_utils",
        "//examples/program_analysis/ui:serve",
        "//runtime",
    ],
)

py_library(
    name = "lazy_structure",
    srcs = ["lazy_structure.py"],
    deps = [
        "//:mapper",
        "//:tactic_utils",
        "//:ts_lib",
        "//:ts_utils",
        "//examples/program_analysis/ui:serve",
        "//runtime",
    ],
)

py_library(
    name = "analyzelib",
    srcs = ["analyzelib.py"],
    deps = [
        "//:analogy_utils",
        "//:mapper",
        "//:tactic_utils",
        "//:ts_lib",
        "//:ts_utils",
        "//examples/program_analysis/ui:serve",
        "//runtime",
    ],
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback