aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/dec/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'java/org/brotli/dec/BUILD')
-rwxr-xr-xjava/org/brotli/dec/BUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/java/org/brotli/dec/BUILD b/java/org/brotli/dec/BUILD
index e7499a9..32c5897 100755
--- a/java/org/brotli/dec/BUILD
+++ b/java/org/brotli/dec/BUILD
@@ -7,17 +7,20 @@ licenses(["notice"]) # MIT
java_library(
name = "dec",
- srcs = glob(["*.java"], exclude = ["*Test*.java"]),
+ srcs = glob(
+ ["*.java"],
+ exclude = ["*Test*.java"],
+ ),
)
java_library(
name = "test_lib",
+ testonly = 1,
srcs = glob(["*Test*.java"]),
deps = [
":dec",
"@junit_junit//jar",
],
- testonly = 1,
)
java_test(