123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package(
- default_visibility = [
- "//visibility:public",
- ],
- )
- load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
- ddk_headers(
- name = "smcinvoke_kernel_headers",
- hdrs = glob([
- "include/linux/smcinvoke*.h",
- "include/linux/IClientE*.h",
- "include/linux/ITrustedCameraDriver.h",
- "include/linux/CTrustedCameraDriver.h",
- "linux/misc/qseecom_kernel.h",
- "linux/misc/qseecom_priv.h",
- ]),
- includes = [
- "include",
- "include/linux",
- "linux",
- ],
- )
- ddk_headers(
- name = "securemsm_kernel_headers",
- hdrs = [
- "linux/misc/qseecom_kernel.h",
- "linux/misc/qseecom_priv.h",
- ],
- includes = ["linux"],
- )
- ddk_headers(
- name = "hdcp_qseecom_dlkm",
- hdrs = glob([
- ":smcinvoke_kernel_headers",
- "linux/*.h",
- "include/linux/*h",
- "include/smci/uid/*h",
- "include/smci/interface/*h",
- "linux/misc/*.h",
- "config/*.h",
- ]),
- includes = [
- ".",
- "config",
- "include",
- "linux",
- ],
- )
- ddk_headers(
- name = "qcedev_local_headers",
- hdrs = glob([
- "linux/*.h",
- "crypto-qti/*.h"
- ]),
- includes = [".", "crypto-qti"]
- )
- ddk_headers(
- name = "smmu_proxy_headers",
- hdrs = glob([
- "smmu-proxy/*.h",
- "smmu-proxy/linux/*.h",
- "smmu-proxy/uapi/linux/*.h"
- ]),
- includes = [".", "smmu-proxy"],
- )
- load("pineapple.bzl", "define_pineapple")
- define_pineapple()
|