blob: c9eb3b27666a68553eb77875a156ddd9f2bb5fea [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 -070015import("//build_overrides/pigweed.gni")
16
Alexei Frolovedd2f142020-06-09 19:11:27 -070017import("$dir_pw_build/target_types.gni")
Armando Montanezd2e49032019-12-06 13:06:01 -080018import("$dir_pw_docgen/docs.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070019
Chenghan Zhou6e9924a2020-07-20 12:21:42 -040020config("default_config") {
21 include_dirs = [ "public" ]
Chenghan Zhoud4f44d22020-06-18 15:42:06 -040022}
23
Alexei Frolov258fc1b2020-06-10 16:24:50 -070024pw_source_set("pw_sys_io_baremetal_stm32f429") {
Chenghan Zhou6e9924a2020-07-20 12:21:42 -040025 public_configs = [ ":default_config" ]
26 public = [ "public/pw_sys_io_baremetal_stm32f429/init.h" ]
Ewout van Bekkum0f82b332020-08-24 13:29:16 -070027 public_deps = [
Scott James Remnant81713a32021-07-22 13:09:18 -070028 "$dir_pw_boot_cortex_m:armv7m",
Alexei Frolov258fc1b2020-06-10 16:24:50 -070029 "$dir_pw_preprocessor",
Ewout van Bekkum0f82b332020-08-24 13:29:16 -070030 ]
31 deps = [
Alexei Frolov258fc1b2020-06-10 16:24:50 -070032 "$dir_pw_sys_io:default_putget_bytes",
33 "$dir_pw_sys_io:facade",
34 ]
Chenghan Zhou6e9924a2020-07-20 12:21:42 -040035 sources = [ "sys_io_baremetal.cc" ]
Armando Montaneza69244e2019-11-15 11:25:10 -080036}
37
Armando Montanezd2e49032019-12-06 13:06:01 -080038pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080039 sources = [ "docs.rst" ]
Armando Montaneza69244e2019-11-15 11:25:10 -080040}