blob: 5ac34a6183a4b153aeb0c3b4738c53a5ec162269 [file] [log] [blame]
Wyatt Heplercb725c12020-05-01 11:05:01 -07001# 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
Rob Mohr5fc25412021-06-23 09:35:23 -070023licenses(["notice"])
Wyatt Heplercb725c12020-05-01 11:05:01 -070024
25pw_cc_library(
26 name = "headers",
27 hdrs = [
Wyatt Hepler21ab0f42021-03-15 09:38:11 -070028 "public/pw_log_tokenized/config.h",
Wyatt Heplercb725c12020-05-01 11:05:01 -070029 "public/pw_log_tokenized/log_tokenized.h",
Wyatt Heplerebbce4c2021-06-03 17:34:00 -070030 "public/pw_log_tokenized/metadata.h",
Wyatt Heplercb725c12020-05-01 11:05:01 -070031 "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
Wyatt Hepler91659f22020-11-03 12:36:26 -080050pw_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 = [
Alexei Frolovd3e5cb72021-01-08 13:08:45 -080056 "//pw_hdlc:encoder",
Wyatt Hepler91659f22020-11-03 12:36:26 -080057 "//pw_tokenizer:base64",
58 "//pw_tokenizer:global_handler_with_payload.facade",
59 ],
60)
61
Wyatt Heplercb725c12020-05-01 11:05:01 -070062pw_cc_test(
Wyatt Heplerebbce4c2021-06-03 17:34:00 -070063 name = "log_tokenized_test",
Wyatt Heplercb725c12020-05-01 11:05:01 -070064 srcs = [
Wyatt Heplerebbce4c2021-06-03 17:34:00 -070065 "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",
Wyatt Heplercb725c12020-05-01 11:05:01 -070079 ],
80 deps = [
81 ":headers",
82 "//pw_unit_test",
83 ],
84)