Android.bp 500 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Copyright (C) 2024 The LineageOS Project
  3. //
  4. // SPDX-License-Identifier: Apache-2.0
  5. //
  6. cc_binary {
  7. name: "nonui-notifier",
  8. vendor: true,
  9. init_rc: ["nonui-notifier.rc"],
  10. srcs: [
  11. "NonUiNotifier.cpp",
  12. ],
  13. shared_libs: [
  14. "libbase",
  15. "libcutils",
  16. "libhidlbase",
  17. "libutils",
  18. "[email protected]",
  19. "[email protected]",
  20. ],
  21. header_libs: [
  22. "generated_kernel_headers",
  23. ],
  24. }