blob: 15255e2b3e73c34a6dfa22eb9fa5dd8fb01b59fd [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 -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 Montanez096de552020-03-23 10:38:18 -070020import("$dir_pw_docgen/docs.gni")
Armando Montanezfd5de702020-06-10 16:51:01 -070021pw_source_set("pw_sys_io_baremetal_lm3s6965evb") {
22 public_deps = [ "$dir_pw_boot_armv7m" ]
23 deps = [
24 "$dir_pw_preprocessor",
25 "$dir_pw_sys_io:default_putget_bytes",
26 "$dir_pw_sys_io:facade",
27 ]
28 sources = [
29 "early_boot.c",
30 "sys_io_baremetal.cc",
31 ]
Armando Montanez096de552020-03-23 10:38:18 -070032}