From 5dbc8f84816ca04f06d18ddba5cb6331ab378446 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 13 Nov 2024 16:39:46 -0500 Subject: [PATCH] Meta: Add new WebGL source files to GN build as well LadybirdBrowser/ladybird#2308 updated idl_files.gni, but not the actual build file. --- .../secondary/Userland/Libraries/LibWeb/WebGL/BUILD.gn | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/WebGL/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/WebGL/BUILD.gn index c46db1b9393f44..3d8e3285279494 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/WebGL/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/WebGL/BUILD.gn @@ -4,9 +4,19 @@ source_set("WebGL") { sources = [ "EventNames.cpp", "OpenGLContext.cpp", + "WebGLActiveInfo.cpp", + "WebGLBuffer.cpp", "WebGLContextAttributes.cpp", "WebGLContextEvent.cpp", + "WebGLFramebuffer.cpp", + "WebGLObject.cpp", + "WebGLProgram.cpp", + "WebGLRenderbuffer.cpp", "WebGLRenderingContext.cpp", "WebGLRenderingContextBase.cpp", + "WebGLShader.cpp", + "WebGLShaderPrecisionFormat.cpp", + "WebGLTexture.cpp", + "WebGLUniformLocation.cpp", ] }