aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/wrapper/enc/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'java/org/brotli/wrapper/enc/BUILD.bazel')
-rw-r--r--java/org/brotli/wrapper/enc/BUILD.bazel95
1 files changed, 95 insertions, 0 deletions
diff --git a/java/org/brotli/wrapper/enc/BUILD.bazel b/java/org/brotli/wrapper/enc/BUILD.bazel
new file mode 100644
index 0000000..b8500c7
--- /dev/null
+++ b/java/org/brotli/wrapper/enc/BUILD.bazel
@@ -0,0 +1,95 @@
+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"],
+ ),
+ deps = [
+ "//org/brotli/common:shared_dictionary",
+ "//org/brotli/enc:prepared_dictionary",
+ ],
+ resources = ["//:license"],
+)
+
+java_library(
+ name = "test_lib",
+ testonly = 1,
+ srcs = glob(["*Test*.java"]),
+ deps = [
+ ":enc",
+ "//org/brotli/common:shared_dictionary",
+ "//org/brotli/enc:prepared_dictionary",
+ "//org/brotli/integration:brotli_jni_test_base",
+ "//org/brotli/integration:bundle_helper",
+ "//org/brotli/wrapper/common",
+ "//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"],
+)