mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-09 18:16:09 +03:00
124c378472
We now create a WorkerAgent for the parent context, which is currently only a Window. Note that Workers can have Workers per the spec. The WorkerAgent spawns a WebWorker process to hold the actual script execution of the Worker. This is modeled with the DedicatedWorkerHost object in the WebWorker process. A start_dedicated_worker IPC method in the WebWorker IPC creates the WorkerHost object. Future different worker types may use different IPC messages to create their WorkerHost instance. This implementation cannot yet postMessage between the parent and the child processes. Co-Authored-By: Andreas Kling <kling@serenityos.org>
33 lines
1016 B
CMake
33 lines
1016 B
CMake
add_subdirectory(ConfigServer)
|
|
add_subdirectory(EchoServer)
|
|
add_subdirectory(FileOperation)
|
|
add_subdirectory(LookupServer)
|
|
add_subdirectory(WebServer)
|
|
|
|
if (SERENITYOS)
|
|
add_subdirectory(AudioServer)
|
|
add_subdirectory(ChessEngine)
|
|
add_subdirectory(Clipboard)
|
|
add_subdirectory(CrashDaemon)
|
|
add_subdirectory(DeviceMapper)
|
|
add_subdirectory(DHCPClient)
|
|
add_subdirectory(ImageDecoder)
|
|
add_subdirectory(FileSystemAccessServer)
|
|
add_subdirectory(KeyboardPreferenceLoader)
|
|
add_subdirectory(LaunchServer)
|
|
add_subdirectory(LoginServer)
|
|
add_subdirectory(NetworkServer)
|
|
add_subdirectory(NotificationServer)
|
|
add_subdirectory(RequestServer)
|
|
add_subdirectory(SpiceAgent)
|
|
add_subdirectory(SQLServer)
|
|
add_subdirectory(SystemServer)
|
|
add_subdirectory(Taskbar)
|
|
add_subdirectory(TelnetServer)
|
|
add_subdirectory(WebContent)
|
|
add_subdirectory(WebDriver)
|
|
add_subdirectory(WebSocket)
|
|
add_subdirectory(WebWorker)
|
|
add_subdirectory(WindowServer)
|
|
endif()
|