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

This replaces the previous Web::ImageDecoding::Decoder interface. While we're doing this, also move the SerenityOS implementation of this interface from LibWebView to WebContent. That means we no longer have to link with LibImageDecoderClient in applications that use a web view.
20 lines
598 B
CMake
20 lines
598 B
CMake
set(SOURCES
|
|
DOMTreeModel.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 LibFileSystemAccessClient LibGfx LibGUI LibIPC LibProtocol LibWeb)
|
|
|
|
add_subdirectory(DumpLayoutTree)
|