Roll src/build/ 3c58005ad..c53d22a39 (15 commits)

https://chromium.googlesource.com/chromium/src/build/+log/3c58005adf6e..c53d22a398b8

$ git log 3c58005ad..c53d22a39 --date=short --no-merges --format='%ad %ae %s'
2025-12-09 victorvianna [build] Remove gnu++2a special casing for gcc bots
2025-12-09 ajgo Delayload userenv
2025-12-09 anandrv [build] Enable Java location rewrite by default on Canary
2025-12-08 smaier Javaless renderer: update to latest Android impl
2025-12-08 inglorion build: Introduce cros_target_cpu_arch GN arg
2025-12-08 drott Update visibility of FreeType component
2025-12-08 drott Sync build configuration enable_freetype with PDF
2025-12-07 msta Rerun modularize.py --os=windows
2025-12-05 linyuh Reland (attempt #2): "Make test APK the default browser app if it has APP_BROWSER category"
2025-12-05 machenbach [build] Enable building arm with coverage instrumentation
2025-12-05 brunobraga [AutofillAi - M4] Add required java classes for c++ communication
2025-12-04 zijiehe [fuchsia] --bp-compression-sort=function in size-optimized
2025-12-04 ajgo Delayload secur32, winhttp, winspool & wintrust
2025-12-04 msta Remove extern_c from clang modules.
2025-12-04 anandrv [base/android] Add location attribution to ThreadUtils methods

Created with:
  roll-dep src/build

Change-Id: Iced6f760cae459eaa6351e5d8238f8d25bb3980f
Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/7241672
Reviewed-by: Frank Barchard <fbarchard@chromium.org>
Commit-Queue: Victor Vianna <victorvianna@google.com>
1 file changed
tree: 0a138d91d8633cbef2597ff964fb81e3c999136b
  1. build_overrides/
  2. docs/
  3. include/
  4. infra/
  5. riscv_script/
  6. source/
  7. tools_libyuv/
  8. unit_test/
  9. util/
  10. .clang-format
  11. .gitignore
  12. .gn
  13. .vpython3
  14. Android.bp
  15. Android.mk
  16. AUTHORS
  17. BUILD.gn
  18. CM_linux_packages.cmake
  19. CMakeLists.txt
  20. codereview.settings
  21. DEPS
  22. DIR_METADATA
  23. download_vs_toolchain.py
  24. libyuv.gni
  25. libyuv.gyp
  26. libyuv.gypi
  27. LICENSE
  28. linux.mk
  29. OWNERS
  30. PATENTS
  31. PRESUBMIT.py
  32. public.mk
  33. pylintrc
  34. README.chromium
  35. README.md
  36. 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/SVE2/SME 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.