aboutsummaryrefslogtreecommitdiff
path: root/docs/BUILD.gn
diff options
context:
space:
mode:
authorArmando Montanez <amontanez@google.com>2019-12-12 10:51:50 -0800
committerCQ Bot Account <commit-bot@chromium.org>2019-12-12 21:15:16 +0000
commit0874558cf3f52b7155bfb10f5a90f334a0e803e7 (patch)
tree00709cac1b38a4576a0ad5eca88db581ce304bed /docs/BUILD.gn
parentdceb02000fae45d40ed0b58d24576998735f7cd1 (diff)
downloadpigweed-0874558cf3f52b7155bfb10f5a90f334a0e803e7.tar.gz
docs: Add 'targets' section
Creates a new section in the docs for target documentation, and adds some documentation for the stm32f429i-disc1 target. Change-Id: I0ffbfa56a97458d850834fc0f670b32885b0d2b5
Diffstat (limited to 'docs/BUILD.gn')
-rw-r--r--docs/BUILD.gn9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/BUILD.gn b/docs/BUILD.gn
index 79aa78267..2133e554a 100644
--- a/docs/BUILD.gn
+++ b/docs/BUILD.gn
@@ -21,15 +21,24 @@ pw_doc_group("core_docs") {
]
}
+# Documentation for upstream Pigweed targets.
+group("target_docs") {
+ deps = [
+ "$dir_pigweed/targets/stm32f429i-disc1:target_docs",
+ ]
+}
+
pw_doc_gen("docs") {
conf = "conf.py"
sources = [
"index.rst",
"modules.rst",
+ "targets.rst",
]
output_directory = target_gen_dir
deps = [
":core_docs",
+ ":target_docs",
"$dir_pw_bloat:docs",
"$dir_pw_build:docs",
"$dir_pw_docgen:docs",