You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: misc/bazel/pkg.bzl
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ def codeql_pkg_files(
72
72
73
73
_ZipInfo=provider(fields= {"zips_to_prefixes": "mapping of zip files to prefixes"})
74
74
75
-
_CodeQLPackInfo=provider(
75
+
CodeQLPackInfo=provider(
76
76
"A provider that encapsulates all the information needed to build a codeql pack.",
77
77
fields= {
78
78
"pack_prefix": "A prefix to add to all paths, IF the user requests so. We omit it for local installation targets of single packs (but not pack groups)",
"prefix": attr.string(doc="Prefix to add to all files."),
207
207
"arch_overrides": attr.string_list(doc="A list of files that should be included in the arch package regardless of the path, specify the path _without_ `prefix`."),
208
208
},
209
-
provides= [_CodeQLPackInfo],
209
+
provides= [CodeQLPackInfo],
210
210
)
211
211
212
212
_CODEQL_PACK_GROUP_EXTRACT_ATTRS= {
213
-
"srcs": attr.label_list(providers= [_CodeQLPackInfo], mandatory=True, doc="List of `_codeql_pack_info` rules (generated by `codeql_pack`)."),
213
+
"srcs": attr.label_list(providers= [CodeQLPackInfo], mandatory=True, doc="List of `_codeql_pack_info` rules (generated by `codeql_pack`)."),
214
214
"apply_pack_prefix": attr.bool(doc="Set to `False` to skip adding the per-pack prefix to all file paths.", default=True),
215
215
"kind": attr.string(doc="Extract only the commmon, arch-specific, or all files from the pack group.", values= ["common", "arch", "all"]),
216
216
"prefix": attr.string(doc="Prefix to add to all files, is prefixed after the per-pack prefix has been applied.", default=""),
0 commit comments