1# Copyright 2024 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
7#import("//build/image/image.gni")
8
9config("config") {
10  include_dirs = [
11    "inc",
12    "//test/inc",
13  ]
14}
15
16source_set("sp805") {
17  testonly = true
18  public_configs = [
19    ":config",
20    "//src/arch/aarch64:arch_config",
21  ]
22  sources = [ "sp805.c" ]
23}
24