blob: 8abfbf149e6aa91f733c80288aa081614f085d43 [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")
21
22# This if statement allows docs to always build even if the target isn't
23# compatible with this backend.
24if (dir_pw_sys_io_backend == dir_pw_sys_io_baremetal_lm3s6965evb) {
Alexei Frolovedd2f142020-06-09 19:11:27 -070025 pw_source_set("pw_sys_io_baremetal_lm3s6965evb") {
Armando Montanez096de552020-03-23 10:38:18 -070026 public_deps = [ "$dir_pw_boot_armv7m" ]
27 deps = [
28 "$dir_pw_preprocessor",
29 "$dir_pw_sys_io:default_putget_bytes",
30 "$dir_pw_sys_io:facade",
31 ]
Armando Montanezec9dd672020-06-05 12:32:51 -070032 sources = [
33 "early_boot.c",
34 "sys_io_baremetal.cc",
35 ]
Armando Montanez096de552020-03-23 10:38:18 -070036 }
37}