blob: 2133e554abd23d7f8b2e5ccc48e3225b3259c10f [file] [log] [blame]
Alexei Frolov0efdb112019-11-14 17:22:08 -08001# Copyright 2019 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15import("$dir_pw_docgen/docs.gni")
16
Keir Mierle2c1e56b2019-11-15 16:32:11 -080017pw_doc_group("core_docs") {
18 sources = [
19 "embedded_cpp_guide.rst",
20 "style_guide.rst",
21 ]
22}
23
Armando Montanez08745582019-12-12 10:51:50 -080024# Documentation for upstream Pigweed targets.
25group("target_docs") {
26 deps = [
27 "$dir_pigweed/targets/stm32f429i-disc1:target_docs",
28 ]
29}
30
Alexei Frolov0efdb112019-11-14 17:22:08 -080031pw_doc_gen("docs") {
32 conf = "conf.py"
Wyatt Heplerb82f9952019-11-25 13:56:31 -080033 sources = [
34 "index.rst",
35 "modules.rst",
Armando Montanez08745582019-12-12 10:51:50 -080036 "targets.rst",
Wyatt Heplerb82f9952019-11-25 13:56:31 -080037 ]
Alexei Frolov0efdb112019-11-14 17:22:08 -080038 output_directory = target_gen_dir
39 deps = [
Keir Mierle2c1e56b2019-11-15 16:32:11 -080040 ":core_docs",
Armando Montanez08745582019-12-12 10:51:50 -080041 ":target_docs",
Alexei Frolov0efdb112019-11-14 17:22:08 -080042 "$dir_pw_bloat:docs",
Rob Mohr49de4922019-12-10 20:10:41 -080043 "$dir_pw_build:docs",
Alexei Frolov8ffcb912019-11-18 11:00:20 -080044 "$dir_pw_docgen:docs",
Keir Mierlec34f71f2019-12-06 12:44:47 -080045 "$dir_pw_dumb_io:docs",
Rob Mohr49de4922019-12-10 20:10:41 -080046 "$dir_pw_dumb_io_baremetal_stm32f429:docs",
Armando Montanezd2e49032019-12-06 13:06:01 -080047 "$dir_pw_dumb_io_stdio:docs",
Keir Mierlec34f71f2019-12-06 12:44:47 -080048 "$dir_pw_module:docs",
Alexei Frolov0efdb112019-11-14 17:22:08 -080049 "$dir_pw_preprocessor:docs",
Wyatt Hepleree3e02f2019-12-05 10:52:31 -080050 "$dir_pw_presubmit:docs",
51 "$dir_pw_span:docs",
52 "$dir_pw_status:docs",
Wyatt Heplerfe85de22019-11-19 17:10:20 -080053 "$dir_pw_string:docs",
Alexei Frolovd0b2d482019-12-04 11:06:23 -080054 "$dir_pw_test_server:docs",
Alexei Frolov0efdb112019-11-14 17:22:08 -080055 ]
56}