mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00

This allows the initial fetch() in the run a worker AO to use the proper values from the outside settings.
18 lines
528 B
Text
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",
|
|
]
|
|
}
|