1# Copyright 2021 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/toolchain/platform.gni") 8 9source_set("absent") { 10 sources = [ "absent.c" ] 11} 12 13source_set("gicv3") { 14 public_configs = [ "//src/arch/${plat_arch}:config" ] 15 sources = [ "gicv3.c" ] 16 deps = [ "//third_party/dtc:libfdt" ] 17} 18