You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
|
|
|
|
bool_flag(
|
|
name = "toolchain",
|
|
build_setting_default = False,
|
|
)
|
|
|
|
config_setting(
|
|
name = "uses_toolchain",
|
|
flag_values = {
|
|
":toolchain": "true",
|
|
},
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
exports_files(["jacoco_internal.jarjar"])
|