1# Copyright 2019 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("common") { 10 sources = [ "common.c" ] 11} 12 13source_set("linux") { 14 sources = [ "linux.c" ] 15 deps = [ 16 ":common", 17 "//src/arch/${plat_arch}/boot_flow:linux", 18 ] 19} 20 21source_set("spmc") { 22 sources = [ "spmc.c" ] 23 deps = [ 24 ":common", 25 "//src/arch/${plat_arch}/boot_flow:linux", 26 ] 27} 28