mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:17:36 +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:
parent
ffc0046d74
commit
6952de73dc
9 changed files with 334 additions and 40 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue