mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
dcbbbf5b4a
Also moves WebContentClient and the references to the generated IPC descriptions, since they are all components of OutOfProcessWebView. This patch has no functional changes.
37 lines
955 B
CMake
37 lines
955 B
CMake
serenity_component(
|
|
Browser
|
|
RECOMMENDED
|
|
TARGETS Browser
|
|
DEPENDS ImageDecoder RequestServer WebContent WebSocket
|
|
)
|
|
|
|
compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
|
|
compile_gml(EditBookmark.gml EditBookmarkGML.h edit_bookmark_gml)
|
|
compile_gml(StorageWidget.gml StorageWidgetGML.h storage_widget_gml)
|
|
compile_gml(Tab.gml TabGML.h tab_gml)
|
|
|
|
set(SOURCES
|
|
BookmarksBarWidget.cpp
|
|
BrowserWindow.cpp
|
|
BrowserWindowGML.h
|
|
ConsoleWidget.cpp
|
|
CookieJar.cpp
|
|
CookiesModel.cpp
|
|
DownloadWidget.cpp
|
|
EditBookmarkGML.h
|
|
ElementSizePreviewWidget.cpp
|
|
History.cpp
|
|
IconBag.cpp
|
|
InspectorWidget.cpp
|
|
LocalStorageModel.cpp
|
|
StorageWidget.cpp
|
|
StorageWidgetGML.h
|
|
Tab.cpp
|
|
TabGML.h
|
|
WindowActions.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(Browser ICON app-browser)
|
|
target_link_libraries(Browser LibWebView LibWeb LibProtocol LibGUI LibDesktop LibConfig LibMain)
|
|
link_with_unicode_data(Browser)
|