Skip to content

Commit

Permalink
Reformat @hedron_compile_commands//:bzl_srcs_for_stardoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsauer committed Dec 19, 2023
1 parent 15bd965 commit eac41ee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ refresh_compile_commands(

# Stardoc users only: Depend on "@hedron_compile_commands//:bzl_srcs_for_stardoc" as needed.
# Why? Stardoc requires all loaded files to be listed as deps; without this we'd prevent users from running Stardoc on their code when they load from this tool in, e.g., their own workspace.bzl or wrapping macros.
filegroup(name = "bzl_srcs_for_stardoc", srcs = glob(["**/*.bzl"]) + ["@bazel_tools//:bzl_srcs"], visibility = ["//visibility:public"])
filegroup(
name = "bzl_srcs_for_stardoc",
visibility = ["//visibility:public"],
srcs = glob(["**/*.bzl"]) + [
"@bazel_tools//:bzl_srcs"
],
)



Expand Down

0 comments on commit eac41ee

Please sign in to comment.