blob: 1fa0ecf73ff1ad23c1ac7b7322d5e63adda8790d [file] [log] [blame]
Armando Montanez096de552020-03-23 10:38:18 -07001# Copyright 2020 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
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 Montanez096de552020-03-23 10:38:18 -070018import("$dir_pw_docgen/docs.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070019
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070020config("default_config") {
21 include_dirs = [ "public" ]
22}
23
Armando Montanezfd5de702020-06-10 16:51:01 -070024pw_source_set("pw_sys_io_baremetal_lm3s6965evb") {
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070025 public_configs = [ ":default_config" ]
26 public = [ "public/pw_sys_io_baremetal_lm3s6965evb/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",
Armando Montanezfd5de702020-06-10 16:51:01 -070029 "$dir_pw_preprocessor",
Ewout van Bekkum0f82b332020-08-24 13:29:16 -070030 ]
31 deps = [
Armando Montanezfd5de702020-06-10 16:51:01 -070032 "$dir_pw_sys_io:default_putget_bytes",
33 "$dir_pw_sys_io:facade",
34 ]
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070035 sources = [ "sys_io_baremetal.cc" ]
Armando Montanez096de552020-03-23 10:38:18 -070036}