mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
Meta: Add missing IDL files to the GN build
Unclear why these being missing did not cause a compilation error.
This commit is contained in:
parent
cc84dba7e8
commit
0bd5e94958
Notes:
sideshowbarker
2024-07-17 06:35:23 +09:00
Author: https://github.com/trflynn89
Commit: 0bd5e94958
Pull-request: https://github.com/SerenityOS/serenity/pull/24298
Issue: https://github.com/SerenityOS/serenity/issues/24293
Reviewed-by: https://github.com/ADKaster ✅
4 changed files with 39 additions and 1 deletions
|
@ -351,6 +351,7 @@ shared_library("LibWeb") {
|
||||||
"UIEvents",
|
"UIEvents",
|
||||||
"UserTiming",
|
"UserTiming",
|
||||||
"WebAssembly",
|
"WebAssembly",
|
||||||
|
"WebAudio",
|
||||||
"WebDriver",
|
"WebDriver",
|
||||||
"WebGL",
|
"WebGL",
|
||||||
"WebIDL",
|
"WebIDL",
|
||||||
|
|
|
@ -26,6 +26,7 @@ source_set("CSS") {
|
||||||
"CSSStyleRule.cpp",
|
"CSSStyleRule.cpp",
|
||||||
"CSSStyleSheet.cpp",
|
"CSSStyleSheet.cpp",
|
||||||
"CSSSupportsRule.cpp",
|
"CSSSupportsRule.cpp",
|
||||||
|
"CSSTransition.cpp",
|
||||||
"CalculatedOr.cpp",
|
"CalculatedOr.cpp",
|
||||||
"Clip.cpp",
|
"Clip.cpp",
|
||||||
"Display.cpp",
|
"Display.cpp",
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
source_set("WebAudio") {
|
||||||
|
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
||||||
|
|
||||||
|
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
||||||
|
|
||||||
|
sources = [
|
||||||
|
"AudioBuffer.cpp",
|
||||||
|
"AudioBuffer.h",
|
||||||
|
"AudioContext.cpp",
|
||||||
|
"AudioContext.h",
|
||||||
|
"AudioNode.cpp",
|
||||||
|
"AudioNode.h",
|
||||||
|
"AudioParam.cpp",
|
||||||
|
"AudioParam.h",
|
||||||
|
"AudioScheduledSourceNode.cpp",
|
||||||
|
"AudioScheduledSourceNode.h",
|
||||||
|
"BaseAudioContext.cpp",
|
||||||
|
"BaseAudioContext.h",
|
||||||
|
"OfflineAudioContext.cpp",
|
||||||
|
"OfflineAudioContext.h",
|
||||||
|
"OscillatorNode.cpp",
|
||||||
|
"OscillatorNode.h",
|
||||||
|
"PeriodicWave.cpp",
|
||||||
|
"PeriodicWave.h",
|
||||||
|
]
|
||||||
|
}
|
|
@ -45,6 +45,7 @@ standard_idl_files = [
|
||||||
"//Userland/Libraries/LibWeb/CSS/CSSStyleRule.idl",
|
"//Userland/Libraries/LibWeb/CSS/CSSStyleRule.idl",
|
||||||
"//Userland/Libraries/LibWeb/CSS/CSSStyleSheet.idl",
|
"//Userland/Libraries/LibWeb/CSS/CSSStyleSheet.idl",
|
||||||
"//Userland/Libraries/LibWeb/CSS/CSSSupportsRule.idl",
|
"//Userland/Libraries/LibWeb/CSS/CSSSupportsRule.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/CSS/CSSTransition.idl",
|
||||||
"//Userland/Libraries/LibWeb/CSS/FontFace.idl",
|
"//Userland/Libraries/LibWeb/CSS/FontFace.idl",
|
||||||
"//Userland/Libraries/LibWeb/CSS/FontFaceSet.idl",
|
"//Userland/Libraries/LibWeb/CSS/FontFaceSet.idl",
|
||||||
"//Userland/Libraries/LibWeb/CSS/MediaList.idl",
|
"//Userland/Libraries/LibWeb/CSS/MediaList.idl",
|
||||||
|
@ -114,9 +115,9 @@ standard_idl_files = [
|
||||||
"//Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl",
|
"//Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/CloseEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/CloseEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/CustomElements/CustomElementRegistry.idl",
|
"//Userland/Libraries/LibWeb/HTML/CustomElements/CustomElementRegistry.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/HTML/DataTransfer.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/DOMParser.idl",
|
"//Userland/Libraries/LibWeb/HTML/DOMParser.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/DOMStringMap.idl",
|
"//Userland/Libraries/LibWeb/HTML/DOMStringMap.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/DataTransfer.idl",
|
|
||||||
"//Userland/Libraries/LibWeb/HTML/ErrorEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/ErrorEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/FormDataEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/FormDataEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/HashChangeEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/HashChangeEvent.idl",
|
||||||
|
@ -307,6 +308,15 @@ standard_idl_files = [
|
||||||
"//Userland/Libraries/LibWeb/WebAssembly/Memory.idl",
|
"//Userland/Libraries/LibWeb/WebAssembly/Memory.idl",
|
||||||
"//Userland/Libraries/LibWeb/WebAssembly/Module.idl",
|
"//Userland/Libraries/LibWeb/WebAssembly/Module.idl",
|
||||||
"//Userland/Libraries/LibWeb/WebAssembly/Table.idl",
|
"//Userland/Libraries/LibWeb/WebAssembly/Table.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/AudioBuffer.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/AudioContext.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/AudioNode.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/AudioParam.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/AudioScheduledSourceNode.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/BaseAudioContext.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/OfflineAudioContext.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/OscillatorNode.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/WebAudio/PeriodicWave.idl",
|
||||||
"//Userland/Libraries/LibWeb/WebGL/WebGLContextEvent.idl",
|
"//Userland/Libraries/LibWeb/WebGL/WebGLContextEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/WebGL/WebGLRenderingContext.idl",
|
"//Userland/Libraries/LibWeb/WebGL/WebGLRenderingContext.idl",
|
||||||
"//Userland/Libraries/LibWeb/WebIDL/DOMException.idl",
|
"//Userland/Libraries/LibWeb/WebIDL/DOMException.idl",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue