BUILD.bazel 692 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
  2. package(
  3. default_visibility = [
  4. "//visibility:public"],
  5. )
  6. ddk_headers(
  7. name = "goodix_ts_headers",
  8. hdrs = glob([
  9. "goodix_berlin_driver/*.h",
  10. "qts/*.h"
  11. ]
  12. )
  13. )
  14. ddk_headers(
  15. name = "nt36xxx_headers",
  16. hdrs = glob([
  17. "nt36xxx/*.h"
  18. ]
  19. )
  20. )
  21. ddk_headers(
  22. name = "config_headers",
  23. hdrs = glob([
  24. "config/*.h"
  25. ]
  26. ),
  27. includes = ["config"]
  28. )
  29. ddk_headers(
  30. name = "touch_drivers_headers",
  31. hdrs = [":goodix_ts_headers", ":nt36xxx_headers", ":config_headers"]
  32. )
  33. load(":target.bzl", "define_pineapple")
  34. define_pineapple()