2019-05-14 11:33:01 +00:00
|
|
|
# Copyright 2019 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.
|
|
|
|
|
|
|
|
"""native_binary() and native_test() rule implementations.
|
|
|
|
|
|
|
|
These rules let you wrap a pre-built binary or script in a conventional binary
|
|
|
|
and test rule respectively. They fulfill the same goal as sh_binary and sh_test
|
|
|
|
do, but they run the wrapped binary directly, instead of through Bash, so they
|
2022-05-17 11:26:16 +00:00
|
|
|
don't depend on Bash and work with --shell_executable="".
|
2019-05-14 11:33:01 +00:00
|
|
|
"""
|
|
|
|
|
2022-05-17 11:26:16 +00:00
|
|
|
def _impl_rule(ctx):
|
2024-04-24 19:40:31 +00:00
|
|
|
out = ctx.actions.declare_file(ctx.attr.out if (ctx.attr.out != "") else ctx.attr.name + ".exe")
|
2022-05-17 11:26:16 +00:00
|
|
|
ctx.actions.symlink(
|
|
|
|
target_file = ctx.executable.src,
|
|
|
|
output = out,
|
|
|
|
is_executable = True,
|
|
|
|
)
|
2022-03-29 21:41:48 +00:00
|
|
|
runfiles = ctx.runfiles(files = ctx.files.data)
|
|
|
|
|
|
|
|
# Bazel 4.x LTS does not support `merge_all`.
|
|
|
|
# TODO: remove `merge` branch once we drop support for Bazel 4.x.
|
|
|
|
if hasattr(runfiles, "merge_all"):
|
|
|
|
runfiles = runfiles.merge_all([
|
|
|
|
d[DefaultInfo].default_runfiles
|
|
|
|
for d in ctx.attr.data + [ctx.attr.src]
|
|
|
|
])
|
|
|
|
else:
|
|
|
|
for d in ctx.attr.data:
|
|
|
|
runfiles = runfiles.merge(d[DefaultInfo].default_runfiles)
|
|
|
|
runfiles = runfiles.merge(ctx.attr.src[DefaultInfo].default_runfiles)
|
|
|
|
|
2019-05-14 11:33:01 +00:00
|
|
|
return DefaultInfo(
|
|
|
|
executable = out,
|
2020-02-03 15:45:44 +00:00
|
|
|
files = depset([out]),
|
2022-03-29 21:41:48 +00:00
|
|
|
runfiles = runfiles,
|
2019-05-14 11:33:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
_ATTRS = {
|
|
|
|
"src": attr.label(
|
|
|
|
executable = True,
|
2022-04-05 21:09:55 +00:00
|
|
|
# This must be used instead of `allow_single_file` because otherwise a
|
|
|
|
# target with multiple default outputs (e.g. py_binary) would not be
|
|
|
|
# allowed.
|
|
|
|
allow_files = True,
|
2019-05-14 11:33:01 +00:00
|
|
|
mandatory = True,
|
2022-04-05 21:09:55 +00:00
|
|
|
cfg = "target",
|
2022-05-17 11:26:16 +00:00
|
|
|
doc = "path of the pre-built executable",
|
|
|
|
),
|
|
|
|
"data": attr.label_list(
|
|
|
|
allow_files = True,
|
|
|
|
doc = "data dependencies. See" +
|
2022-09-01 12:19:43 +00:00
|
|
|
" https://bazel.build/reference/be/common-definitions#typical.data",
|
2019-05-14 11:33:01 +00:00
|
|
|
),
|
|
|
|
# "out" is attr.string instead of attr.output, so that it is select()'able.
|
2024-04-24 19:40:31 +00:00
|
|
|
"out": attr.string(
|
|
|
|
default = "",
|
|
|
|
doc = "An output name for the copy of the binary. Defaults to " +
|
|
|
|
"name.exe. (We add .exe to the name by default because it's " +
|
|
|
|
"required on Windows and tolerated on other platforms.)",
|
|
|
|
),
|
2019-05-14 11:33:01 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 11:26:16 +00:00
|
|
|
native_binary = rule(
|
|
|
|
implementation = _impl_rule,
|
2019-05-14 11:33:01 +00:00
|
|
|
attrs = _ATTRS,
|
|
|
|
executable = True,
|
2022-05-17 11:26:16 +00:00
|
|
|
doc = """
|
|
|
|
Wraps a pre-built binary or script with a binary rule.
|
|
|
|
|
|
|
|
You can "bazel run" this rule like any other binary rule, and use it as a tool
|
|
|
|
in genrule.tools for example. You can also augment the binary with runfiles.
|
|
|
|
""",
|
2019-05-14 11:33:01 +00:00
|
|
|
)
|
|
|
|
|
2022-05-17 11:26:16 +00:00
|
|
|
native_test = rule(
|
|
|
|
implementation = _impl_rule,
|
2019-05-14 11:33:01 +00:00
|
|
|
attrs = _ATTRS,
|
|
|
|
test = True,
|
2022-05-17 11:26:16 +00:00
|
|
|
doc = """
|
|
|
|
Wraps a pre-built binary or script with a test rule.
|
2019-05-14 11:33:01 +00:00
|
|
|
|
2022-05-17 11:26:16 +00:00
|
|
|
You can "bazel test" this rule like any other test rule. You can also augment
|
|
|
|
the binary with runfiles.
|
|
|
|
""",
|
|
|
|
)
|