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