BUILD.bazel 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. load("pineapple.bzl", "define_pineapple")
  46. define_pineapple()