1# 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 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 = "headers", 27 hdrs = [ 28 "public/pw_log_tokenized/config.h", 29 "public/pw_log_tokenized/log_tokenized.h", 30 "public/pw_log_tokenized/metadata.h", 31 "public_overrides/pw_log_backend/log_backend.h", 32 ], 33 includes = [ 34 "public", 35 "public_overrides", 36 ], 37 deps = [ 38 "//pw_tokenizer", 39 ], 40) 41 42pw_cc_library( 43 name = "pw_log_tokenized", 44 deps = [ 45 ":headers", 46 "//pw_log:facade", 47 ], 48) 49 50pw_cc_library( 51 name = "base64_over_hdlc", 52 srcs = ["base64_over_hdlc.cc"], 53 hdrs = ["public/pw_log_tokenized/base64_over_hdlc.h"], 54 includes = ["public"], 55 deps = [ 56 "//pw_hdlc:encoder", 57 "//pw_tokenizer:base64", 58 "//pw_tokenizer:global_handler_with_payload.facade", 59 ], 60) 61 62pw_cc_test( 63 name = "log_tokenized_test", 64 srcs = [ 65 "log_tokenized_test.cc", 66 "log_tokenized_test_c.c", 67 "pw_log_tokenized_private/test_utils.h", 68 ], 69 deps = [ 70 ":headers", 71 "//pw_unit_test", 72 ], 73) 74 75pw_cc_test( 76 name = "metadata_test", 77 srcs = [ 78 "metadata_test.cc", 79 ], 80 deps = [ 81 ":headers", 82 "//pw_unit_test", 83 ], 84) 85