Android.bp 644 B

12345678910111213141516171819202122232425262728293031323334353637
  1. cc_test {
  2. name: "EGL_test",
  3. srcs: [
  4. "egl_cache_test.cpp",
  5. "EGL_test.cpp",
  6. ],
  7. cflags: [
  8. "-Wall",
  9. "-Werror",
  10. ],
  11. shared_libs: [
  12. "[email protected]",
  13. "android.hardware.configstore-utils",
  14. "libEGL",
  15. "libbase",
  16. "libcutils",
  17. "libbinder",
  18. "libgui",
  19. "libhidlbase",
  20. "libhidltransport",
  21. "liblog",
  22. "libutils",
  23. "libnativewindow",
  24. ],
  25. include_dirs: [
  26. "bionic/libc/private",
  27. "frameworks/native/opengl/libs",
  28. "frameworks/native/opengl/libs/EGL",
  29. ],
  30. }