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_stream, 39 ] 40} 41 42pw_test_group("tests") { 43 tests = [ 44 ":persistent_test", 45 ":persistent_buffer_test", 46 ] 47} 48 49pw_test("persistent_test") { 50 deps = [ 51 ":pw_persistent_ram", 52 dir_pw_random, 53 ] 54 sources = [ "persistent_test.cc" ] 55} 56 57pw_test("persistent_buffer_test") { 58 deps = [ 59 ":pw_persistent_ram", 60 dir_pw_random, 61 ] 62 sources = [ "persistent_buffer_test.cc" ] 63} 64 65pw_doc_group("docs") { 66 sources = [ "docs.rst" ] 67 report_deps = [ ":persistent_size" ] 68} 69 70pw_size_report("persistent_size") { 71 title = "pw::persistent_ram::Persistent" 72 73 # To see all the symbols, uncomment the following: 74 # Note: The size report RST table won't be generated when full_report = true. 75 # full_report = true 76 77 binaries = [ 78 { 79 target = "size_report:persistent" 80 base = "size_report:persistent_base" 81 label = "Persistent including pw_checksum's CRC16" 82 }, 83 { 84 target = "size_report:persistent" 85 base = "size_report:persistent_base_with_crc16" 86 label = "Persistent without pw_checksum's CRC16" 87 }, 88 ] 89} 90