blob: 522798768eab53d6b2f3405f9b19f0975a18b685 [file]
load("@rules_license//rules:license.bzl", "license")
licenses(["notice"])
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
package_name = "error_prone",
license_kinds = [
"@rules_license//licenses/spdx:Apache-2.0",
],
license_text = "LICENSE",
)
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
alias(
name = "error_prone",
actual = "//third_party:error_prone",
)
alias(
name = "annotations",
actual = "//third_party:error_prone_annotations",
)