blob: 6e6dc73dfe1984439110527cddb91d302f6583c6 [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
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070015load(
16 "//pw_build:pigweed.bzl",
Nathaniel Brougha1113be2021-03-07 09:05:41 +080017 "pw_cc_library",
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070018)
19
Armando Montanez096de552020-03-23 10:38:18 -070020package(default_visibility = ["//visibility:public"])
21
22licenses(["notice"]) # Apache License 2.0
23
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070024pw_cc_library(
Armando Montanez096de552020-03-23 10:38:18 -070025 name = "pw_sys_io_baremetal_lm3s6965evb",
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070026 srcs = ["sys_io_baremetal.cc"],
Nathaniel Brougha1113be2021-03-07 09:05:41 +080027 hdrs = ["public/pw_sys_io_baremetal_lm3s6965evb/init.h"],
Nathaniel Broughc2d57812021-04-18 22:52:00 +080028 target_compatible_with = [
29 "//pw_build/constraints/chipset:lm3s6965evb",
30 "@platforms//os:none",
31 ],
Nathaniel Brougha1113be2021-03-07 09:05:41 +080032 deps = [
Ewout van Bekkum712cbfb2020-08-24 11:55:57 -070033 "//pw_preprocessor",
Nathaniel Broughc2d57812021-04-18 22:52:00 +080034 "//pw_sys_io:facade",
Nathaniel Brougha1113be2021-03-07 09:05:41 +080035 ],
Armando Montanez096de552020-03-23 10:38:18 -070036)