1# Copyright (C) 2021 The Dagger Authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15# BUILD rules for https://github.com/google/error-prone. Note that Bazel already 16# applies the Error Prone compiler to all java compilations - this package exports 17# dependencies for Error Prone's libraries 18 19load("@rules_java//java:defs.bzl", "java_library") 20 21package(default_visibility = ["//:src"]) 22 23java_library( 24 name = "annotations", 25 tags = ["maven:compile_only"], 26 exports = ["@maven//:com_google_errorprone_error_prone_annotations"], 27) 28 29alias( 30 name = "error_prone_javac", 31 actual = "@maven//:com_google_errorprone_javac_shaded", 32) 33 34java_library( 35 name = "check_api", 36 exports = [ 37 "@maven//:com_google_errorprone_error_prone_annotation", 38 "@maven//:com_google_errorprone_error_prone_check_api", 39 ], 40 runtime_deps = [ 41 ":annotations", 42 ":error_prone_javac", 43 "//third_party/java/checker_framework:dataflow", 44 "//third_party/java/diffutils", 45 "//third_party/java/jsr305_annotations", 46 ], 47) 48