19 lines
460 B
Python
19 lines
460 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
java_library(
|
|
name = "bazel-result-reporter",
|
|
srcs = glob(["src/**/*.java"]),
|
|
target_compatible_with = ["//build/bazel/platforms/os:linux"],
|
|
deps = [
|
|
":tradefed",
|
|
],
|
|
)
|
|
|
|
java_import(
|
|
name = "tradefed",
|
|
jars = [
|
|
"//tools/tradefederation/prebuilts/filegroups/tradefed:tradefed-prebuilt",
|
|
],
|
|
target_compatible_with = ["//build/bazel/platforms/os:linux"],
|
|
)
|