Meta: Port recent build changes to gn build

This ports the following commits:

e26ead0995
5c5a00dd3a
This commit is contained in:
Sebastian Zaha 2023-09-01 08:45:14 +02:00 committed by Andrew Kaster
parent 0adda642a6
commit 8dcb7c29ad
Notes: sideshowbarker 2024-07-17 05:00:08 +09:00
2 changed files with 7 additions and 3 deletions

View File

@ -78,9 +78,6 @@ executable("ladybird_executable") {
"//Userland/Libraries/LibWebView",
]
sources = [
"//Userland/Applications/Browser/CookieJar.cpp",
"//Userland/Applications/Browser/Database.cpp",
"//Userland/Applications/Browser/History.cpp",
"HelperProcess.cpp",
"Qt/AutoComplete.cpp",
"Qt/BrowserWindow.cpp",

View File

@ -70,13 +70,20 @@ shared_library("LibWebView") {
"//Userland/Libraries/LibGUI",
"//Userland/Libraries/LibGfx",
"//Userland/Libraries/LibIPC",
"//Userland/Libraries/LibJS",
"//Userland/Libraries/LibProtocol",
"//Userland/Libraries/LibSQL",
"//Userland/Libraries/LibWeb",
]
sources = [
"AccessibilityTreeModel.cpp",
"ConsoleClient.cpp",
"CookieJar.cpp",
"DOMTreeModel.cpp",
"Database.cpp",
"History.cpp",
"RequestServerAdapter.cpp",
"SourceHighlighter.cpp",
"StylePropertiesModel.cpp",
"ViewImplementation.cpp",
"WebContentClient.cpp",