blob: d3e2e4f8d244fabc68f129924280b0d00661e195 [file] [log] [blame]
Gabor Ambrusa84494a2023-08-14 23:04:48 +02001#-------------------------------------------------------------------------------
2# Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Includes components needed for deploying the logging service provider
7# within a secure partition.
8#-------------------------------------------------------------------------------
9
10#-------------------------------------------------------------------------------
11# Common components for logging sp deployments
12#
13#-------------------------------------------------------------------------------
14add_components(TARGET "logging"
15 BASE_DIR ${TS_ROOT}
16 COMPONENTS
17 "components/common/fdt"
18 "components/common/trace"
19 "components/common/utils"
20 "components/config/ramstore"
21 "components/config/loader/sp"
22 "components/messaging/ffa/libsp"
23 "components/rpc/common/interface"
24 "components/rpc/common/endpoint"
25 "components/rpc/ts_rpc/common"
26 "components/rpc/ts_rpc/endpoint/sp"
27 "components/service/log/backend/uart/uart_adapter/platform"
28)
29
30target_sources(logging PRIVATE
31 ${CMAKE_CURRENT_LIST_DIR}/logging_sp.c
32)