Enable GPU in crosvm

When the GPU feature is turned on in crosvm, these modules are added as
dependencies. Since crosvm is included in the virt APEX, add the APEX to
the apex_available properties of the modules to make them available in
the APEX.

Bug: 325929966
Test: m
Change-Id: Ia52e44be1183cd274e99b4e2013cdbb80331729d
1 file changed
tree: 0e14db3b55dff3b06846282c55d1ef5b086d5669
  1. build_overrides/
  2. docs/
  3. fuzz/
  4. include/
  5. infra/
  6. riscv_script/
  7. source/
  8. tools_libyuv/
  9. unit_test/
  10. util/
  11. .clang-format
  12. .gitignore
  13. .gn
  14. .vpython
  15. .vpython3
  16. Android.bp
  17. AUTHORS
  18. BUILD.gn
  19. cleanup_links.py
  20. CM_linux_packages.cmake
  21. CMakeLists.txt
  22. codereview.settings
  23. DEPS
  24. DIR_METADATA
  25. download_vs_toolchain.py
  26. libyuv.gni
  27. libyuv.gyp
  28. libyuv.gypi
  29. LICENSE
  30. linux.mk
  31. METADATA
  32. OWNERS
  33. OWNERS.android
  34. PATENTS
  35. PRESUBMIT.py
  36. public.mk
  37. pylintrc
  38. README.chromium
  39. README.md
  40. setup_env.bat
  41. winarm.mk
README.md

libyuv is an open source project that includes YUV scaling and conversion functionality.

  • Scale YUV to prepare content for compression, with point, bilinear or box filter.
  • Convert to YUV from webcam formats for compression.
  • Convert to RGB formats for rendering/effects.
  • Rotate by 90/180/270 degrees to adjust for mobile devices in portrait mode.
  • Optimized for SSSE3/AVX2 on x86/x64.
  • Optimized for Neon on Arm.
  • Optimized for MSA on Mips.
  • Optimized for RVV on RISC-V.

Development

See Getting started for instructions on how to get started developing.

You can also browse the docs directory for more documentation.