Files
android_kernel_samsung_sm86…/spu_modules.bzl
Nurit Lichtenstein e4e3733a5a spu-kernel: Bazel compilation for spu-kernel drivers
Signed-off-by: Nurit Lichtenstein <quic_nuritl@quicinc.com>
Change-Id: I051f02f650b734644e92d4c0bd13239487d4bfb5
2023-02-15 12:36:13 +02:00

24 lines
483 B
Python

load(":spu_module_build.bzl", "spu_driver_module_entry")
spu_driver_modules = spu_driver_module_entry([":spu_headers"])
module_entry = spu_driver_modules.register
#--------------- SPU-DRIVERS MODULES ------------------
module_entry(
name = "spcom",
config_option = "CONFIG_MSM_SPCOM",
srcs = ["spcom.c"],
path = "drivers"
)
module_entry(
name = "spss_utils",
config_option = "CONFIG_MSM_SPSS_UTILS",
srcs = ["spss_utils.c"],
path = "drivers"
)