mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 17:15:08 +00:00

This is the final component that required LibProtocol as a dependency of LibWeb. With this, we can now remove the dependency, and LibWeb no longer requires IPC to work :^)
21 lines
628 B
CMake
21 lines
628 B
CMake
set(SOURCES
|
|
DOMTreeModel.cpp
|
|
ImageDecoderClientAdapter.cpp
|
|
OutOfProcessWebView.cpp
|
|
RequestServerAdapter.cpp
|
|
StylePropertiesModel.cpp
|
|
WebContentClient.cpp
|
|
WebSocketClientAdapter.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
../../Services/RequestServer/RequestClientEndpoint.h
|
|
../../Services/RequestServer/RequestServerEndpoint.h
|
|
../../Services/WebContent/WebContentClientEndpoint.h
|
|
../../Services/WebContent/WebContentServerEndpoint.h
|
|
)
|
|
|
|
serenity_lib(LibWebView webview)
|
|
target_link_libraries(LibWebView LibGfx LibGUI LibImageDecoderClient LibIPC LibProtocol LibWeb)
|
|
|
|
add_subdirectory(DumpLayoutTree)
|