1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn
Andrew Kaster b5acc5f2df LibWeb: Serialize and pass to the WebWorker the current ESO
This allows the initial fetch() in the run a worker AO to use the proper
values from the outside settings.
2024-03-06 07:19:10 +01:00

18 lines
528 B
Text

source_set("Scripting") {
configs += [ "//Userland/Libraries/LibWeb:configs" ]
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
sources = [
"ClassicScript.cpp",
"EnvironmentSettingsSnapshot.cpp",
"Environments.cpp",
"ExceptionReporter.cpp",
"Fetching.cpp",
"ModuleMap.cpp",
"ModuleScript.cpp",
"Script.cpp",
"SerializedEnvironmentSettingsObject.cpp",
"TemporaryExecutionContext.cpp",
"WindowEnvironmentSettingsObject.cpp",
"WorkerEnvironmentSettingsObject.cpp",
]
}