aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/wrapper/enc/BUILD
blob: 22154d2741cbf38bfbdc2f15b00c98b94b3ef3d4 (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
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # MIT

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

filegroup(
    name = "brotli_jni",
    srcs = ["//:brotli_jni.dll"],
)

java_library(
    name = "enc",
    srcs = glob(
        ["*.java"],
        exclude = ["*Test*.java"],
    ),
    resource_jars = ["//:license"],
)

java_library(
    name = "test_lib",
    testonly = 1,
    srcs = glob(["*Test*.java"]),
    deps = [
        ":enc",
        "//org/brotli/integration:brotli_jni_test_base",
        "//org/brotli/integration:bundle_helper",
        "//org/brotli/wrapper/dec",
        "@maven//:junit_junit",
    ],
)

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

java_test(
    name = "BrotliEncoderChannelTest",
    size = "large",
    data = [
        ":brotli_jni",  # Bazel JNI workaround
        ":test_bundle",
    ],
    jvm_flags = [
        "-DBROTLI_JNI_LIBRARY=$(location :brotli_jni)",
        "-DTEST_BUNDLE=$(location :test_bundle)",
    ],
    shard_count = 15,
    test_class = "org.brotli.wrapper.enc.BrotliEncoderChannelTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "BrotliOutputStreamTest",
    size = "large",
    data = [
        ":brotli_jni",  # Bazel JNI workaround
        ":test_bundle",
    ],
    jvm_flags = [
        "-DBROTLI_JNI_LIBRARY=$(location :brotli_jni)",
        "-DTEST_BUNDLE=$(location :test_bundle)",
    ],
    shard_count = 15,
    test_class = "org.brotli.wrapper.enc.BrotliOutputStreamTest",
    runtime_deps = [":test_lib"],
)

java_test(
    name = "EncoderTest",
    size = "large",
    data = [
        ":brotli_jni",  # Bazel JNI workaround
        ":test_bundle",
    ],
    jvm_flags = [
        "-DBROTLI_JNI_LIBRARY=$(location :brotli_jni)",
        "-DTEST_BUNDLE=$(location :test_bundle)",
    ],
    shard_count = 15,
    test_class = "org.brotli.wrapper.enc.EncoderTest",
    runtime_deps = [":test_lib"],
)