Julian Hall | 2feec56 | 2022-09-07 09:22:45 +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 env-test service provider |
| 7 | # within a secure partition. |
| 8 | #------------------------------------------------------------------------------- |
| 9 | |
| 10 | #------------------------------------------------------------------------------- |
| 11 | # Common components for env-test sp deployments |
| 12 | # |
| 13 | #------------------------------------------------------------------------------- |
| 14 | add_components(TARGET "env-test" |
| 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" |
Imre Kis | 4fe0c10 | 2023-07-05 18:14:21 +0200 | [diff] [blame] | 24 | "components/rpc/common/endpoint" |
| 25 | "components/rpc/ts_rpc/common" |
| 26 | "components/rpc/ts_rpc/endpoint/sp" |
Julian Hall | 2feec56 | 2022-09-07 09:22:45 +0100 | [diff] [blame] | 27 | ) |
| 28 | |
| 29 | target_sources(env-test PRIVATE |
| 30 | ${CMAKE_CURRENT_LIST_DIR}/env_test_sp.c |
| 31 | ) |