1# Copyright (c) 2020 Intel Corporation. 2# SPDX-License-Identifier: Apache-2.0 3 4zephyr_library() 5 6zephyr_library_include_directories( 7 ${ZEPHYR_BASE}/kernel/include 8 ${ZEPHYR_BASE}/arch/${ARCH}/include 9 ) 10 11zephyr_library_sources( 12 coredump_core.c 13 coredump_memory_regions.c 14 ) 15 16zephyr_library_sources_ifdef( 17 CONFIG_DEBUG_COREDUMP_BACKEND_LOGGING 18 coredump_backend_logging.c 19 ) 20 21zephyr_library_sources_ifdef( 22 CONFIG_DEBUG_COREDUMP_BACKEND_FLASH_PARTITION 23 coredump_backend_flash_partition.c 24 ) 25