Android.bp 798 B

123456789101112131415161718192021222324252627282930313233343536
  1. shared_libs = [
  2. "android.hardware.configstore-utils",
  3. "[email protected]",
  4. "libbinder",
  5. "libbufferhubqueue",
  6. "libcutils",
  7. "libgui",
  8. "libhidlbase",
  9. "liblog",
  10. "libui",
  11. "libutils",
  12. "libnativewindow",
  13. "libpdx_default_transport",
  14. ]
  15. static_libs = [
  16. "libdisplay",
  17. ]
  18. cc_test {
  19. srcs: ["vrflinger_test.cpp"],
  20. // See go/apct-presubmit for documentation on how this .filter file is used
  21. // by Android's automated testing infrastructure for test filtering.
  22. data: ["vrflinger_test.filter"],
  23. static_libs: static_libs,
  24. shared_libs: shared_libs,
  25. cflags: [
  26. "-DLOG_TAG=\"VrFlingerTest\"",
  27. "-DTRACE=0",
  28. "-O0",
  29. "-g",
  30. "-Wall",
  31. "-Werror",
  32. ],
  33. name: "vrflinger_test",
  34. }