Android.bp 376 B

1234567891011121314151617181920212223
  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. "libhidlbase",
  16. "libutils",
  17. "android.frameworks.sensorservice@1.0",
  18. ],
  19. }