We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77af3b9 commit 99abf9bCopy full SHA for 99abf9b
doxygen/doxygen.bzl
@@ -37,7 +37,7 @@ def _collect_files_aspect_impl(_, ctx):
37
38
# Collect transitive files from dependencies
39
transitive_files = []
40
- for dep in ctx.rule.attr.deps:
+ for dep in ctx.rule.attr.deps if hasattr(ctx.rule.attr, "deps") else []:
41
if TransitiveSourcesInfo in dep:
42
transitive_files.append(dep[TransitiveSourcesInfo].srcs)
43
0 commit comments