aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/wrapper/enc/BUILD
blob: 2290ab449037292f6ddfff81d9c14f8b1d3676ec (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # MIT

filegroup(
    name = "jni_src",
    srcs = ["encoder_jni.cc"],
)

#########################################
# WARNING: do not depend on this target!
#########################################
java_library(
    name = "enc",
    srcs = glob(
        ["*.java"],
        exclude = ["*Test*.java"],
    ),
    deps = ["//:jni"],
)

filegroup(
    name = "test_bundle",
    srcs = ["//java/org/brotli/integration:test_corpus"],
)

java_test(
    name = "BrotliEncoderChannelTest",
    size = "large",
    srcs = ["BrotliEncoderChannelTest.java"],
    data = [
        ":test_bundle",
        "//:jni",  # Bazel JNI workaround
    ],
    jvm_flags = ["-DTEST_BUNDLE=$(location :test_bundle)"],
    shard_count = 15,
    deps = [
        ":enc",
        "//java/org/brotli/integration:bundle_helper",
        "//java/org/brotli/wrapper/dec",
        "@junit_junit//jar",
    ],
)

java_test(
    name = "BrotliOutputStreamTest",
    size = "large",
    srcs = ["BrotliOutputStreamTest.java"],
    data = [
        ":test_bundle",
        "//:jni",  # Bazel JNI workaround
    ],
    jvm_flags = ["-DTEST_BUNDLE=$(location :test_bundle)"],
    shard_count = 15,
    deps = [
        ":enc",
        "//java/org/brotli/integration:bundle_helper",
        "//java/org/brotli/wrapper/dec",
        "@junit_junit//jar",
    ],
)

java_test(
    name = "EncoderTest",
    size = "large",
    srcs = ["EncoderTest.java"],
    data = [
        ":test_bundle",
        "//:jni",  # Bazel JNI workaround
    ],
    jvm_flags = ["-DTEST_BUNDLE=$(location :test_bundle)"],
    shard_count = 15,
    deps = [
        ":enc",
        "//java/org/brotli/integration:bundle_helper",
        "//java/org/brotli/wrapper/dec",
        "@junit_junit//jar",
    ],
)

java_test(
    name = "UseCustomDictionaryTest",
    size = "large",
    srcs = ["UseCustomDictionaryTest.java"],
    data = [
        ":test_bundle",
        "//:jni",  # Bazel JNI workaround
    ],
    jvm_flags = ["-DTEST_BUNDLE=$(location :test_bundle)"],
    shard_count = 15,
    deps = [
        ":enc",
        "//java/org/brotli/integration:bundle_helper",
        "//java/org/brotli/wrapper/common",
        "//java/org/brotli/wrapper/dec",
        "@junit_junit//jar",
    ],
)