blob: 62401298596440c1b724a9ac6136b54a4059e80c [file] [log] [blame]
Armando Montaneza69244e2019-11-15 11:25:10 -08001# Copyright 2019 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
Wyatt Hepler1a960942019-11-26 14:13:38 -08004# use this file except in compliance with the License. You may obtain a copy of
5# the License at
Armando Montaneza69244e2019-11-15 11:25:10 -08006#
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
Wyatt Hepler1a960942019-11-26 14:13:38 -080012# License for the specific language governing permissions and limitations under
13# the License.
Armando Montaneza69244e2019-11-15 11:25:10 -080014
Armando Montanezd2e49032019-12-06 13:06:01 -080015import("$dir_pw_docgen/docs.gni")
16
17# This if statement allows docs to always build even if the target isn't
18# compatible with this backend.
19if (dir_pw_dumb_io_backend == dir_pw_dumb_io_baremetal_stm32f429) {
20 config("linker_script_config") {
21 _linker_script = "stm32f429.ld"
22 inputs = [
23 _linker_script,
24 ]
25 ldflags = [ "-T" + rebase_path("$_linker_script") ]
26 }
27
28 source_set("linker_script") {
29 public_configs = [ ":linker_script_config" ]
30 }
31
32 source_set("pw_dumb_io_baremetal_stm32f429") {
33 public_configs = [ "$dir_pw_build:pw_default_cpp" ]
34 public_deps = [
35 ":linker_script",
36 ]
37 deps = [
38 "$dir_pw_dumb_io:default_putget_bytes",
39 "$dir_pw_dumb_io:facade",
40 "$dir_pw_preprocessor",
41 ]
42 sources = [
43 "core_init.c",
44 "dumb_io_baremetal.cc",
45 ]
46 }
Armando Montaneza69244e2019-11-15 11:25:10 -080047}
48
Armando Montanezd2e49032019-12-06 13:06:01 -080049pw_doc_group("docs") {
Armando Montaneza69244e2019-11-15 11:25:10 -080050 sources = [
Armando Montanezd2e49032019-12-06 13:06:01 -080051 "docs.rst",
Armando Montaneza69244e2019-11-15 11:25:10 -080052 ]
53}