2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-28 21:34:00 +00:00
rules_cc/tests/rule_based_toolchain/testdata/BUILD
Googler 35fe45e91b BEGIN_PUBLIC
Implement cc_args.

Also change cc_flag_set / cc_flag_group to cc_args / cc_arg_group. This is to lean into the idea that this is roughly equivalent to ctx.actions.args()
END_PUBLIC

PiperOrigin-RevId: 608804069
Change-Id: I74ea883b14219f904aaafc4eab902b96a1fb3e3d
2024-02-20 17:58:39 -08:00

17 lines
257 B
Python

package(default_visibility = ["//tests/rule_based_toolchain:__subpackages__"])
exports_files(
glob(
["*"],
exclude = ["BUILD"],
),
)
filegroup(
name = "multiple",
srcs = [
"multiple1",
"multiple2",
],
)