Android.bp 528 B

123456789101112131415161718192021222324252627
  1. GNSS_CFLAGS = [
  2. "-Werror",
  3. "-Wformat",
  4. "-Wformat-extra-args",
  5. "-Wunused-label",
  6. "-Wunused-variable",
  7. "-Wunused-function",
  8. "-Wimplicit-fallthrough",
  9. "-Wno-unused-parameter",
  10. "-Wno-undefined-bool-conversion",
  11. ]
  12. /* Activate the following for debug purposes only,
  13. comment out for production */
  14. GNSS_SANITIZE_DIAG = {
  15. /*
  16. diag: {
  17. cfi: true,
  18. misc_undefined: [
  19. "bounds",
  20. "null",
  21. "unreachable",
  22. "integer",
  23. ],
  24. },
  25. */
  26. }