Julian Hall | 072daf8 | 2022-08-04 12:04:41 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2022, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | # Includes components needed for deploying the protected-storage service provider |
| 7 | # within a secure partition. |
| 8 | #------------------------------------------------------------------------------- |
| 9 | |
| 10 | #------------------------------------------------------------------------------- |
| 11 | # Common components for protected-storage sp deployments |
| 12 | # |
| 13 | #------------------------------------------------------------------------------- |
| 14 | add_components(TARGET "protected-storage" |
| 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" |
Imre Kis | 3ed2e05 | 2023-06-28 14:19:31 +0200 | [diff] [blame] | 23 | "components/rpc/common/endpoint" |
Julian Hall | 072daf8 | 2022-08-04 12:04:41 +0100 | [diff] [blame] | 24 | "components/rpc/common/interface" |
Imre Kis | 3ed2e05 | 2023-06-28 14:19:31 +0200 | [diff] [blame] | 25 | "components/rpc/ts_rpc/common" |
| 26 | "components/rpc/ts_rpc/endpoint/sp" |
Gabor Ambrus | 70908d0 | 2023-08-15 14:42:38 +0200 | [diff] [blame] | 27 | "components/rpc/ts_rpc/caller/sp" |
| 28 | "components/service/log/factory" |
| 29 | "components/service/log/client" |
Julian Hall | 072daf8 | 2022-08-04 12:04:41 +0100 | [diff] [blame] | 30 | ) |
| 31 | |
| 32 | target_sources(protected-storage PRIVATE |
| 33 | ${CMAKE_CURRENT_LIST_DIR}/ps_sp.c |
| 34 | ) |