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"]) # Apache License 2.0 24 25pw_cc_library( 26 name = "static_router", 27 hdrs = ["public/pw_router/static_router.h"], 28 srcs = ["static_router.cc"], 29 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) 64