aboutsummaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel8
1 files changed, 8 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index dd5c889..e37b2d0 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -16,6 +16,7 @@ java_library(
],
deps = [
"@com_google_code_gson_gson",
+ "@com_google_guava",
"@junit",
],
)
@@ -25,8 +26,15 @@ java_test(
size = "small",
srcs = ["java/com/google/security/wycheproof/TestUtilTest.java"],
test_class = "com.google.security.wycheproof.TestUtilTest",
+ data = [
+ ":wycheproof.java.security",
+ ],
+ jvm_flags = [
+ "-Djava.security.properties=$(location //:wycheproof.java.security)",
+ ],
deps = [
":utils",
+ "@com_google_guava",
"@junit",
],
)