blob: 0f054f89e94e57226fe0a0dba6c90063bec4f6f4 [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",
39 "public/pw_kvs/in_memory_fake_flash.h",
40 "public/pw_kvs/key_value_store.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080041 ],
42 includes = ["public"],
43 deps = [
44 "//pw_checksum",
45 "//pw_log",
46 "//pw_status",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080047 ],
48)
49
Wyatt Heplerec4b9352020-01-31 15:51:50 -080050pw_cc_library(
51 name = "crc16",
52 hdrs = [
53 "public/pw_kvs/crc16_checksum.h",
54 ],
55 deps = [
56 ":pw_kvs",
57 "//pw_checksum",
58 ],
59)
60
61pw_cc_test(
62 name = "checksum_test",
63 srcs = ["checksum_test.cc"],
64 deps = [
65 ":crc16",
66 ":pw_kvs",
67 "//pw_checksum",
68 "//pw_log",
69 ],
70)
71
Wyatt Hepler2ad60672020-01-21 08:00:16 -080072pw_cc_test(
73 name = "key_value_store_test",
74 srcs = ["key_value_store_test.cc"],
75 deps = [
Wyatt Heplerec4b9352020-01-31 15:51:50 -080076 ":crc16",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080077 ":pw_kvs",
78 "//pw_checksum",
79 "//pw_log",
80 ],
81)