blob: b284affbd37881aa99a73f15a36c76bf560be154 [file] [log] [blame]
Alexei Frolov5af57d12021-01-12 11:38:06 -08001# Copyright 2021 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
15load(
16 "//pw_build:pigweed.bzl",
17 "pw_cc_library",
18 "pw_cc_test",
19)
20
21package(default_visibility = ["//visibility:public"])
22
23licenses(["notice"]) # Apache License 2.0
24
25pw_cc_library(
26 name = "static_router",
Alexei Frolov5af57d12021-01-12 11:38:06 -080027 srcs = ["static_router.cc"],
Nathaniel Brougha1113be2021-03-07 09:05:41 +080028 hdrs = ["public/pw_router/static_router.h"],
Alexei Frolov5af57d12021-01-12 11:38:06 -080029 deps = [
30 ":egress",
31 ":packet_parser",
32 "//pw_log",
33 "//pw_metric",
34 "//pw_sync:mutex",
35 ],
36)
37
38pw_cc_library(
39 name = "egress",
40 hdrs = ["public/pw_router/egress.h"],
41 deps = ["//pw_bytes"],
42)
43
44pw_cc_library(
45 name = "packet_parser",
46 hdrs = ["public/pw_router/packet_parser.h"],
47 deps = ["//pw_bytes"],
48)
49
50pw_cc_library(
51 name = "egress_function",
52 hdrs = ["public/pw_router/egress_function.h"],
53 deps = [":egress"],
54)
55
56pw_cc_test(
57 name = "static_router_test",
58 srcs = ["static_router_test.cc"],
59 deps = [
60 ":egress_function",
61 ":static_router",
62 ],
63)