1# Copyright 2021 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 15import("//build_overrides/pigweed.gni") 16 17import("$dir_pw_bloat/bloat.gni") 18import("$dir_pw_build/target_types.gni") 19import("$dir_pw_docgen/docs.gni") 20import("$dir_pw_unit_test/test.gni") 21 22config("public_include_path") { 23 include_dirs = [ "public" ] 24 visibility = [ ":*" ] 25} 26 27pw_source_set("pw_persistent_ram") { 28 public_configs = [ ":public_include_path" ] 29 public = [ 30 "public/pw_persistent_ram/persistent.h", 31 "public/pw_persistent_ram/persistent_buffer.h", 32 ] 33 sources = [ "persistent_buffer.cc" ] 34 public_deps = [ 35 dir_pw_assert, 36 dir_pw_bytes, 37 dir_pw_checksum, 38 dir_pw_preprocessor, 39 dir_pw_span, 40 dir_pw_stream, 41 ] 42} 43 44pw_test_group("tests") { 45 tests = [ 46 ":persistent_test", 47 ":persistent_buffer_test", 48 ] 49} 50 51pw_test("persistent_test") { 52 deps = [ 53 ":pw_persistent_ram", 54 dir_pw_random, 55 ] 56 sources = [ "persistent_test.cc" ] 57} 58 59pw_test("persistent_buffer_test") { 60 deps = [ 61 ":pw_persistent_ram", 62 dir_pw_random, 63 ] 64 sources = [ "persistent_buffer_test.cc" ] 65} 66 67pw_doc_group("docs") { 68 sources = [ "docs.rst" ] 69 report_deps = [ ":persistent_size" ] 70} 71 72pw_size_diff("persistent_size") { 73 title = "pw::persistent_ram::Persistent" 74 75 binaries = [ 76 { 77 target = "size_report:persistent" 78 base = "size_report:persistent_base" 79 label = "Persistent including pw_checksum's CRC16" 80 }, 81 { 82 target = "size_report:persistent" 83 base = "size_report:persistent_base_with_crc16" 84 label = "Persistent without pw_checksum's CRC16" 85 }, 86 ] 87} 88