• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package(default_visibility = ["//visibility:public"])
2
3java_library(
4    name = "bazel-result-reporter",
5    srcs = glob(["src/**/*.java"]),
6    target_compatible_with = ["//build/bazel/platforms/os:linux"],
7    deps = [
8        ":tradefed",
9    ],
10)
11
12java_import(
13    name = "tradefed",
14    jars = [
15        "//tools/tradefederation/prebuilts/filegroups/tradefed:tradefed-prebuilt",
16    ],
17    target_compatible_with = ["//build/bazel/platforms/os:linux"],
18)
19