aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java_tools/junitrunner/javatests/com/google/testing/junit/runner/testbed/BUILD
blob: d48306f2af7dc55fe7a86807cf91ea6f76e0d214 (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
DEFAULT_VISIBILITY = [
    "//src/java_tools/junitrunner:__subpackages__",
]

package(default_visibility = DEFAULT_VISIBILITY)

java_library(
    name = "testbed",
    testonly = 1,
    srcs = glob(["*.java"]),
    deps = [
        "//third_party:guava",
        "//third_party:junit4",
        "//third_party:truth",
    ],
)

exports_files([
    "XmlOutputExercises.ant.xml",
])

filegroup(
    name = "srcs",
    srcs = glob(["*.java"]) + [
        "XmlOutputExercises.ant.xml",
        "BUILD",
    ],
    visibility = ["//src:__pkg__"],
)