blob: fc9a223f992e9045382ec182b657d0638f3d68a5 [file] [log] [blame]
# Copyright 2021 The Bazel Authors. All rights reserved.
#
# 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.
"""
Definition of java_library rule.
"""
load(":common/java/java_common.bzl", "JAVA_COMMON_DEP", "collect_resources", "construct_defaultinfo")
load(":common/rule_util.bzl", "create_rule")
load(":common/java/java_semantics.bzl", "semantics")
load(":common/java/proguard_validation.bzl", "VALIDATE_PROGUARD_SPECS")
JavaInfo = _builtins.toplevel.JavaInfo
JavaPluginInfo = _builtins.toplevel.JavaPluginInfo
CcInfo = _builtins.toplevel.CcInfo
def bazel_java_library_rule(
ctx,
srcs = [],
deps = [],
runtime_deps = [],
plugins = [],
exports = [],
exported_plugins = [],
resources = [],
javacopts = [],
neverlink = False,
proguard_specs = []):
"""Implements java_library.
Use this call when you need to produce a fully fledged java_library from
another rule's implementation.
Args:
ctx: (RuleContext) Used to register the actions.
srcs: (list[File]) The list of source files that are processed to create the target.
deps: (list[Target]) The list of other libraries to be linked in to the target.
runtime_deps: (list[Target]) Libraries to make available to the final binary or test at runtime only.
plugins: (list[Target]) Java compiler plugins to run at compile-time.
exports: (list[Target]) Exported libraries.
exported_plugins: (list[Target]) The list of `java_plugin`s (e.g. annotation
processors) to export to libraries that directly depend on this library.
resources: (list[File]) A list of data files to include in a Java jar.
javacopts: (list[str]) Extra compiler options for this library.
neverlink: (bool) Whether this library should only be used for compilation and not at runtime.
proguard_specs: (list[File]) Files to be used as Proguard specification.
Returns:
(list[provider]) A list containing DefaultInfo, JavaInfo,
InstrumentedFilesInfo, OutputGroupsInfo, ProguardSpecProvider providers.
"""
if not srcs and deps:
fail("deps not allowed without srcs; move to runtime_deps?")
base_info = JAVA_COMMON_DEP.call(
ctx,
srcs = srcs,
resources = resources,
plugins = plugins,
deps = deps,
runtime_deps = runtime_deps,
exports = exports,
exported_plugins = exported_plugins,
javacopts = javacopts,
neverlink = neverlink,
)
proguard_specs_provider = VALIDATE_PROGUARD_SPECS.call(
ctx,
proguard_specs = proguard_specs,
transitive_attrs = [deps, runtime_deps, exports, plugins, exported_plugins],
)
base_info.output_groups["_hidden_top_level_INTERNAL_"] = proguard_specs_provider.specs
base_info.extra_providers["ProguardSpecProvider"] = proguard_specs_provider
default_info = construct_defaultinfo(
ctx,
base_info.files_to_build,
neverlink,
base_info.has_sources_or_resources,
exports,
runtime_deps,
)
return dict({
"DefaultInfo": default_info,
"JavaInfo": base_info.java_info,
"InstrumentedFilesInfo": base_info.instrumented_files_info,
"OutputGroupInfo": OutputGroupInfo(**base_info.output_groups),
}, **base_info.extra_providers)
def _proxy(ctx):
return bazel_java_library_rule(
ctx,
srcs = ctx.files.srcs,
deps = ctx.attr.deps,
runtime_deps = ctx.attr.runtime_deps,
plugins = ctx.attr.plugins,
exports = ctx.attr.exports,
exported_plugins = ctx.attr.exported_plugins,
resources = collect_resources(ctx),
javacopts = ctx.attr.javacopts,
neverlink = ctx.attr.neverlink,
proguard_specs = ctx.files.proguard_specs,
).values()
java_library = create_rule(
_proxy,
attrs = dict(
{
"licenses": attr.license() if hasattr(attr, "license") else attr.string_list(),
},
**semantics.EXTRA_ATTRIBUTES
),
deps = [JAVA_COMMON_DEP, VALIDATE_PROGUARD_SPECS],
provides = [JavaInfo],
outputs = {
"classjar": "lib%{name}.jar",
"sourcejar": "lib%{name}-src.jar",
},
compile_one_filetype = [".java"],
)