1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:37:35 +00:00

Ladybird: Implement WebDriver for Ladybird :^)

This adds a WebDriver binary for Ladybird to make use of Serenity's
WebDriver implementation. This has to use the same IPC socket handling
that was used to make WebContent work out-of-process. Besides that, we
are able to reuse almost everything from Serenity.
This commit is contained in:
Timothy Flynn 2022-11-14 12:09:14 -05:00 committed by Andrew Kaster
parent 54321f49ad
commit 9e0db602ca
6 changed files with 238 additions and 2 deletions

View file

@ -114,7 +114,8 @@ add_custom_target(debug
qt_finalize_executable(ladybird)
add_subdirectory(WebContent)
add_dependencies(ladybird WebContent)
add_subdirectory(WebDriver)
add_dependencies(ladybird WebContent WebDriver)
if(NOT CMAKE_SKIP_INSTALL_RULES)
include(cmake/InstallRules.cmake)