BUILD.bazel 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package(
  2. default_visibility = [
  3. "//visibility:public",
  4. ],
  5. )
  6. load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
  7. ddk_headers(
  8. name = "smcinvoke_kernel_headers",
  9. hdrs = glob([
  10. "include/linux/smcinvoke*.h",
  11. "include/linux/IClientE*.h",
  12. "include/linux/ITrustedCameraDriver.h",
  13. "include/linux/CTrustedCameraDriver.h",
  14. "linux/misc/qseecom_kernel.h",
  15. "linux/misc/qseecom_priv.h"
  16. ]),
  17. includes = ["include/linux", "linux", "include"]
  18. )
  19. ddk_headers(
  20. name = "securemsm_kernel_headers",
  21. hdrs = [
  22. "linux/misc/qseecom_kernel.h",
  23. "linux/misc/qseecom_priv.h"
  24. ],
  25. includes = ["linux"]
  26. )
  27. ddk_headers(
  28. name = "hdcp_qseecom_dlkm",
  29. hdrs = glob([
  30. "linux/*.h",
  31. "linux/misc/qseecom_kernel.h",
  32. "hdcp_qseecom/*.h",
  33. "config/*.h"
  34. ]),
  35. includes = [".","linux","config"]
  36. )
  37. ddk_headers(
  38. name = "qcedev_local_headers",
  39. hdrs = glob([
  40. "linux/*.h",
  41. "crypto-qti/*.h"
  42. ]),
  43. includes = [".", "crypto-qti"]
  44. )
  45. ddk_headers(
  46. name = "smmu_proxy_headers",
  47. hdrs = glob([
  48. "smmu-proxy/*.h",
  49. "smmu-proxy/linux/*.h",
  50. "smmu-proxy/uapi/linux/*.h"
  51. ]),
  52. includes = [".", "smmu-proxy"],
  53. )
  54. load("pineapple.bzl", "define_pineapple")
  55. define_pineapple()