Armando Montanez | a69244e | 2019-11-15 11:25:10 -0800 | [diff] [blame] | 1 | # Copyright 2019 The Pigweed Authors |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
Wyatt Hepler | 1a96094 | 2019-11-26 14:13:38 -0800 | [diff] [blame] | 4 | # use this file except in compliance with the License. You may obtain a copy of |
| 5 | # the License at |
Armando Montanez | a69244e | 2019-11-15 11:25:10 -0800 | [diff] [blame] | 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 |
Wyatt Hepler | 1a96094 | 2019-11-26 14:13:38 -0800 | [diff] [blame] | 12 | # License for the specific language governing permissions and limitations under |
| 13 | # the License. |
Armando Montanez | a69244e | 2019-11-15 11:25:10 -0800 | [diff] [blame] | 14 | |
Armando Montanez | fb3d3fb | 2020-06-09 18:12:12 -0700 | [diff] [blame] | 15 | # gn-format disable |
| 16 | import("//build_overrides/pigweed.gni") |
| 17 | |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame] | 18 | import("$dir_pw_build/target_types.gni") |
Armando Montanez | d2e4903 | 2019-12-06 13:06:01 -0800 | [diff] [blame] | 19 | import("$dir_pw_docgen/docs.gni") |
Alexei Frolov | 258fc1b | 2020-06-10 16:24:50 -0700 | [diff] [blame] | 20 | pw_source_set("pw_sys_io_baremetal_stm32f429") { |
| 21 | public_deps = [ "$dir_pw_boot_armv7m" ] |
| 22 | deps = [ |
| 23 | "$dir_pw_preprocessor", |
| 24 | "$dir_pw_sys_io:default_putget_bytes", |
| 25 | "$dir_pw_sys_io:facade", |
| 26 | ] |
| 27 | sources = [ |
| 28 | "early_boot.c", |
| 29 | "sys_io_baremetal.cc", |
| 30 | ] |
Armando Montanez | a69244e | 2019-11-15 11:25:10 -0800 | [diff] [blame] | 31 | } |
| 32 | |
Armando Montanez | d2e4903 | 2019-12-06 13:06:01 -0800 | [diff] [blame] | 33 | pw_doc_group("docs") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 34 | sources = [ "docs.rst" ] |
Armando Montanez | a69244e | 2019-11-15 11:25:10 -0800 | [diff] [blame] | 35 | } |