aboutsummaryrefslogtreecommitdiff
path: root/pw_docgen/docs.gni
diff options
context:
space:
mode:
Diffstat (limited to 'pw_docgen/docs.gni')
-rw-r--r--pw_docgen/docs.gni4
1 files changed, 4 insertions, 0 deletions
diff --git a/pw_docgen/docs.gni b/pw_docgen/docs.gni
index a6354bb0b..50bf8d6be 100644
--- a/pw_docgen/docs.gni
+++ b/pw_docgen/docs.gni
@@ -29,6 +29,7 @@ declare_args() {
# inputs: Additional resource files for the docs, such as images.
# group_deps: Other pw_doc_group targets on which this group depends.
# report_deps: Report card targets on which documentation depends.
+# other_deps: Dependencies on any other types of targets.
template("pw_doc_group") {
assert(defined(invoker.sources), "pw_doc_group requires a list of sources")
@@ -45,6 +46,9 @@ template("pw_doc_group") {
if (defined(invoker.report_deps)) {
_all_deps += invoker.report_deps
}
+ if (defined(invoker.other_deps)) {
+ _all_deps += invoker.other_deps
+ }
# Create a group containing the source and input files so that docs are
# rebuilt on file modifications.