blob: 522325cc061cd16da9da565817fe1f7b35de3770 [file] [log] [blame]
Wyatt Hepler2ad60672020-01-21 08:00:16 -08001# 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"]) # Apache License 2.0
24
25pw_cc_library(
26 name = "pw_kvs",
27 srcs = [
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080028 "checksum.cc",
29 "flash_memory.cc",
Wyatt Hepler6e3a83b2020-02-04 07:36:45 -080030 "format.cc",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080031 "key_value_store.cc",
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080032 "pw_kvs_private/format.h",
33 "pw_kvs_private/macros.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080034 ],
35 hdrs = [
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080036 "public/pw_kvs/checksum.h",
Wyatt Heplerec4b9352020-01-31 15:51:50 -080037 "public/pw_kvs/crc16_checksum.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080038 "public/pw_kvs/flash_memory.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080039 "public/pw_kvs/key_value_store.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080040 ],
41 includes = ["public"],
42 deps = [
43 "//pw_checksum",
44 "//pw_log",
45 "//pw_status",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080046 ],
47)
48
Wyatt Heplerec4b9352020-01-31 15:51:50 -080049pw_cc_library(
50 name = "crc16",
51 hdrs = [
52 "public/pw_kvs/crc16_checksum.h",
53 ],
54 deps = [
55 ":pw_kvs",
56 "//pw_checksum",
57 ],
58)
59
Wyatt Heplerad684a12020-02-04 17:17:29 -080060pw_cc_library(
61 name = "in_memory_fake_flash",
62 hdrs = [
63 "public/pw_kvs/in_memory_fake_flash.h",
64 ],
65 visibility = ["//visibility:private"],
66 deps = [
67 "//pw_log",
68 "//pw_status",
69 ],
70)
71
Wyatt Heplerec4b9352020-01-31 15:51:50 -080072pw_cc_test(
73 name = "checksum_test",
74 srcs = ["checksum_test.cc"],
75 deps = [
76 ":crc16",
77 ":pw_kvs",
78 "//pw_checksum",
79 "//pw_log",
80 ],
81)
82
Wyatt Hepler2ad60672020-01-21 08:00:16 -080083pw_cc_test(
Wyatt Hepler97fc7942020-02-06 15:55:45 -080084 name = "entry_test",
85 srcs = [
86 "entry_test.cc",
87 ],
88 deps = [
89 ":pw_kvs",
90 ],
91)
92
93pw_cc_test(
Wyatt Hepler16b04522020-02-07 16:00:14 -080094 name = "key_value_store_fuzz_test",
95 srcs = ["key_value_store_fuzz_test.cc"],
96 deps = [
97 ":crc16",
98 ":in_memory_fake_flash",
99 ":pw_kvs",
100 "//pw_checksum",
101 ],
102)
103
104pw_cc_test(
Wyatt Hepler2ad60672020-01-21 08:00:16 -0800105 name = "key_value_store_test",
106 srcs = ["key_value_store_test.cc"],
107 deps = [
Wyatt Heplerec4b9352020-01-31 15:51:50 -0800108 ":crc16",
Wyatt Heplerad684a12020-02-04 17:17:29 -0800109 ":in_memory_fake_flash",
Wyatt Hepler2ad60672020-01-21 08:00:16 -0800110 ":pw_kvs",
111 "//pw_checksum",
112 "//pw_log",
113 ],
114)
Wyatt Heplerd6216822020-02-04 16:39:15 -0800115
116cc_binary(
117 name = "debug_cli",
118 srcs = ["debug_cli.cc"],
119 copts = ["-std=c++17"],
120 deps = [
121 ":crc16",
122 ":in_memory_fake_flash",
123 ":pw_kvs",
124 ],
125)