• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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_test",
18)
19
20package(default_visibility = ["//visibility:public"])
21
22licenses(["notice"])
23
24cc_library(
25    name = "static_router",
26    srcs = ["static_router.cc"],
27    hdrs = ["public/pw_router/static_router.h"],
28    includes = ["public"],
29    deps = [
30        ":egress",
31        ":packet_parser",
32        "//pw_log",
33        "//pw_metric:metric",
34    ],
35)
36
37cc_library(
38    name = "egress",
39    hdrs = ["public/pw_router/egress.h"],
40    deps = [
41        ":packet_parser",
42        "//pw_bytes",
43    ],
44)
45
46cc_library(
47    name = "packet_parser",
48    hdrs = ["public/pw_router/packet_parser.h"],
49    includes = ["public"],
50    deps = ["//pw_bytes"],
51)
52
53cc_library(
54    name = "egress_function",
55    hdrs = ["public/pw_router/egress_function.h"],
56    deps = [
57        ":egress",
58        "//pw_function",
59    ],
60)
61
62pw_cc_test(
63    name = "static_router_test",
64    srcs = ["static_router_test.cc"],
65    deps = [
66        ":egress_function",
67        ":static_router",
68    ],
69)
70