blob: bd3d1d029e4dc64f5901e1cfc258e8c392fd86d2 [file] [log] [blame]
# Copyright (C) 2023 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Macro wrapping the java_library for bp2build. """
load(
"@rules_java//java:defs.bzl",
_java_library = "java_library",
)
load("//build/bazel/rules/java:sdk_transition.bzl", "sdk_transition_attrs")
load(":import.bzl", "java_import")
# TODO(b/277801336): document these attributes.
def java_library(
name = "",
srcs = [],
deps = [],
javacopts = [],
sdk_version = None,
java_version = None,
errorprone_force_enable = None,
tags = [],
target_compatible_with = [],
visibility = None,
additional_resources = None,
**kwargs):
""" java_library macro wrapper that handles custom attrs needed in AOSP
Attributes:
errorprone_force_enable: set this to true to always run Error Prone
on this target (overriding the value of environment variable
RUN_ERROR_PRONE). Error Prone can be force disabled for an individual
module by adding the "-XepDisableAllChecks" flag to javacopts
"""
lib_name = name + "_private"
opts = javacopts
if errorprone_force_enable == None:
# TODO (b/227504307) temporarily disable errorprone until environment variable is handled
opts = opts + ["-XepDisableAllChecks"]
if additional_resources != None:
java_import(
name = name + "__additional_resources",
jars = additional_resources,
)
_java_library(
name = lib_name,
srcs = srcs,
deps = deps,
javacopts = opts,
tags = tags + ["manual"],
target_compatible_with = target_compatible_with,
visibility = ["//visibility:private"],
**kwargs
)
java_library_sdk_transition(
name = name,
sdk_version = sdk_version,
java_version = java_version,
exports = lib_name,
tags = tags,
target_compatible_with = target_compatible_with,
visibility = ["//visibility:public"],
)
# The list of providers to forward was determined using cquery on one
# of the example targets listed under EXAMPLE_WRAPPER_TARGETS at
# //build/bazel/ci/target_lists.sh. It may not be exhaustive. A unit
# test ensures that the wrapper's providers and the wrapped rule's do
# match.
def _java_library_sdk_transition_impl(ctx):
return [
ctx.attr.exports[0][JavaInfo],
ctx.attr.exports[0][InstrumentedFilesInfo],
ctx.attr.exports[0][ProguardSpecProvider],
ctx.attr.exports[0][OutputGroupInfo],
ctx.attr.exports[0][DefaultInfo],
]
java_library_sdk_transition = rule(
implementation = _java_library_sdk_transition_impl,
attrs = sdk_transition_attrs,
provides = [JavaInfo],
)