1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

Ladybird: Add WebContentService for Android port

This will let us spawn a new process for an Android Service to handle
all our WebContent needs. The ServiceConnection is manged by each
WebView. The lifecycle of the Service is not quite clear yet, but each
bindService call will get a unique Messenger that can be used to
transfer the WebContent side of the LibIPC socketpair we use in other
ports.
This commit is contained in:
Andrew Kaster 2023-09-06 16:42:16 -06:00 committed by Andrew Kaster
parent ffc0046d74
commit 6952de73dc
9 changed files with 334 additions and 40 deletions

View file

@ -38,7 +38,10 @@ list(REMOVE_ITEM all_required_lagom_libraries ladybird)
# Install webcontent impl library if it exists
if (TARGET webcontent)
list(APPEND all_required_lagom_libraries webcontent)
get_target_property(target_type webcontent TYPE)
if ("${target_type}" STREQUAL STATIC_LIBRARY)
list(APPEND all_required_lagom_libraries webcontent)
endif()
endif()
install(TARGETS ${all_required_lagom_libraries}