1# Copyright 2018 The Hafnium Authors.
2#
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/BSD-3-Clause.
6
7import("//build/image/image.gni")
8import("//build/toolchain/platform.gni")
9
10group("partitions") {
11  testonly = true
12  deps = [
13    "arch/${plat_arch}:arch",
14    "common:common",
15    "ffa_secure_partition_only:ffa_secure_partition_only_test",
16    "ffa_secure_partitions:ffa_both_world_partitions_test",
17    "ffa_secure_partitions:ffa_both_world_partitions_vhe_test",
18  ]
19}
20
21group("vmapi") {
22  testonly = true
23
24  deps = [
25    "arch/${plat_arch}:arch",
26    "common:common",
27    "el0_partitions:el0_partitions_test",
28    "primary_only:primary_only_test",
29    "primary_only_ffa:primary_only_ffa_test",
30    "primary_with_secondaries:primary_with_secondaries_no_fdt",
31    "primary_with_secondaries:primary_with_secondaries_test",
32  ]
33}
34