aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/dec/BUILD
blob: cd5d8d117fafbc3a4b595e7ac73bc0772200a250 (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
# Description:
#   Java port of Brotli decoder.

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

licenses(["notice"])  # MIT

java_library(
    name = "dec",
    srcs = glob(
        ["*.java"],
        exclude = ["*Test*.java"],
    ),
    proguard_specs = ["proguard.cfg"],
)

java_library(
    name = "test_lib",
    testonly = 1,
    srcs = glob(["*Test*.java"]),
    deps = [
        ":dec",
        "@junit_junit//jar",
    ],
)

java_test(
    name = "BitReaderTest",
    test_class = "org.brotli.dec.BitReaderTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "DecodeTest",
    test_class = "org.brotli.dec.DecodeTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "DictionaryTest",
    test_class = "org.brotli.dec.DictionaryTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "EnumTest",
    test_class = "org.brotli.dec.EnumTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "SynthTest",
    test_class = "org.brotli.dec.SynthTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "TransformTest",
    test_class = "org.brotli.dec.TransformTest",
    runtime_deps = [":test_lib"],
)