mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
e3782a7f99
The new ImageDecoder service (available for members of "image" via /tmp/portal/image) allows you to decode images in a separate process. This will allow programs to confidently load untrusted images, since the bulk of the security concerns are sandboxed to a separate process. The only API right now is a synchronous IPC DecodeImage() call that takes a shbuf with encoded image data and returns a shared buffer and metadata for the decoded image. It also comes with a very simple library for interfacing with the ImageDecoder service: LibImageDecoderClient. The name is a bit of a mouthful but I guess we can rename it later if we think of something nicer to call it. There's obviously a bit of overhead to spawning a separate process for every image decode, so this is mostly only appropriate for untrusted images (e.g stuff downloaded from the web) and not necessary for trusted local images (e.g stuff in /res)
27 lines
706 B
CMake
27 lines
706 B
CMake
add_subdirectory(LibAudio)
|
|
add_subdirectory(LibC)
|
|
add_subdirectory(LibCore)
|
|
add_subdirectory(LibCrypto)
|
|
add_subdirectory(LibDebug)
|
|
add_subdirectory(LibDesktop)
|
|
add_subdirectory(LibGemini)
|
|
add_subdirectory(LibGfx)
|
|
add_subdirectory(LibGUI)
|
|
add_subdirectory(LibHTTP)
|
|
add_subdirectory(LibIPC)
|
|
add_subdirectory(LibImageDecoderClient)
|
|
add_subdirectory(LibJS)
|
|
add_subdirectory(LibKeyboard)
|
|
add_subdirectory(LibLine)
|
|
add_subdirectory(LibM)
|
|
add_subdirectory(LibMarkdown)
|
|
add_subdirectory(LibPCIDB)
|
|
add_subdirectory(LibProtocol)
|
|
add_subdirectory(LibPthread)
|
|
add_subdirectory(LibTextCodec)
|
|
add_subdirectory(LibThread)
|
|
add_subdirectory(LibTLS)
|
|
add_subdirectory(LibVT)
|
|
add_subdirectory(LibWeb)
|
|
add_subdirectory(LibX86)
|