Files
gerrit/javatests/com/google/gerrit/index/BUILD
Dave Borowitz 94fd307693 Move Truth rules to a subdirectory of lib
The list of supported Truth extensions is only going to grow.

Change-Id: Ic67a9df6a7548d964fc10b13c10b6db1c96e514e
2018-05-16 14:20:06 -07:00

18 lines
476 B
Python

load("//tools/bzl:junit.bzl", "junit_tests")
junit_tests(
name = "tests",
size = "small",
srcs = glob(["**/*.java"]),
visibility = ["//visibility:public"],
deps = [
"//java/com/google/gerrit/index",
"//java/com/google/gerrit/index:query_exception",
"//java/com/google/gerrit/index:query_parser",
"//lib:junit",
"//lib/antlr:java_runtime",
"//lib/jgit/org.eclipse.jgit:jgit",
"//lib/truth",
],
)