target.bzl 700 B

1234567891011121314151617181920212223
  1. load(":touch_modules.bzl", "touch_driver_modules")
  2. load(":touch_modules_build.bzl", "define_consolidate_gki_modules")
  3. def define_pineapple():
  4. define_consolidate_gki_modules(
  5. target = "pineapple",
  6. registry = touch_driver_modules,
  7. modules = [
  8. "nt36xxx-i2c",
  9. "atmel_mxt_ts",
  10. "dummy_ts",
  11. "goodix_ts"
  12. ],
  13. config_options = [
  14. "TOUCH_DLKM_ENABLE",
  15. "CONFIG_ARCH_PINEAPPLE",
  16. "CONFIG_MSM_TOUCH",
  17. "CONFIG_TOUCHSCREEN_GOODIX_BRL",
  18. "CONFIG_TOUCHSCREEN_NT36XXX_I2C",
  19. "CONFIG_TOUCHSCREEN_ATMEL_MXT",
  20. "CONFIG_TOUCHSCREEN_DUMMY"
  21. ],
  22. )