blob: f1d946668c0d81a577cfc0b7488c8a05851fbd5e [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 Montanezfb3d3fb2020-06-09 18:12:12 -070015# gn-format disable
16import("//build_overrides/pigweed.gni")
17
18import("$dir_pigweed/legacy_target.gni")
Alexei Frolovedd2f142020-06-09 19:11:27 -070019import("$dir_pw_build/target_types.gni")
Armando Montanezd2e49032019-12-06 13:06:01 -080020import("$dir_pw_docgen/docs.gni")
21
22# This if statement allows docs to always build even if the target isn't
23# compatible with this backend.
Armando Montanezf7a5a742020-03-02 14:58:59 -080024if (dir_pw_sys_io_backend == dir_pw_sys_io_baremetal_stm32f429) {
Alexei Frolovedd2f142020-06-09 19:11:27 -070025 pw_source_set("pw_sys_io_baremetal_stm32f429") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080026 public_deps = [ "$dir_pw_boot_armv7m" ]
Armando Montanezd2e49032019-12-06 13:06:01 -080027 deps = [
Armando Montanezd2e49032019-12-06 13:06:01 -080028 "$dir_pw_preprocessor",
Armando Montanezf7a5a742020-03-02 14:58:59 -080029 "$dir_pw_sys_io:default_putget_bytes",
30 "$dir_pw_sys_io:facade",
Armando Montanezd2e49032019-12-06 13:06:01 -080031 ]
Armando Montanezec9dd672020-06-05 12:32:51 -070032 sources = [
33 "early_boot.c",
34 "sys_io_baremetal.cc",
35 ]
Armando Montanezd2e49032019-12-06 13:06:01 -080036 }
Armando Montaneza69244e2019-11-15 11:25:10 -080037}
38
Armando Montanezd2e49032019-12-06 13:06:01 -080039pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080040 sources = [ "docs.rst" ]
Armando Montaneza69244e2019-11-15 11:25:10 -080041}