blob: 69a13ec13505fa7162640c881ac4031a78b614c3 [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 Hepler2ad60672020-01-21 08:00:16 -080030 "key_value_store.cc",
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080031 "pw_kvs_private/format.h",
32 "pw_kvs_private/macros.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080033 ],
34 hdrs = [
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080035 "public/pw_kvs/checksum.h",
Wyatt Heplerec4b9352020-01-31 15:51:50 -080036 "public/pw_kvs/crc16_checksum.h",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080037 "public/pw_kvs/flash_memory.h",
38 "public/pw_kvs/in_memory_fake_flash.h",
39 "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
60pw_cc_test(
61 name = "checksum_test",
62 srcs = ["checksum_test.cc"],
63 deps = [
64 ":crc16",
65 ":pw_kvs",
66 "//pw_checksum",
67 "//pw_log",
68 ],
69)
70
Wyatt Hepler2ad60672020-01-21 08:00:16 -080071pw_cc_test(
72 name = "key_value_store_test",
73 srcs = ["key_value_store_test.cc"],
74 deps = [
Wyatt Heplerec4b9352020-01-31 15:51:50 -080075 ":crc16",
Wyatt Hepler2ad60672020-01-21 08:00:16 -080076 ":pw_kvs",
77 "//pw_checksum",
78 "//pw_log",
79 ],
80)