diff --git a/Meta/gn/secondary/Userland/Libraries/LibAccelGfx/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibAccelGfx/BUILD.gn new file mode 100644 index 0000000000..1db36696b7 --- /dev/null +++ b/Meta/gn/secondary/Userland/Libraries/LibAccelGfx/BUILD.gn @@ -0,0 +1,25 @@ +shared_library("LibAccelGfx") { + output_name = "accelgfx" + include_dirs = [ "//Userland/Libraries" ] + + deps = [ + "//AK", + "//Userland/Libraries/LibCore", + "//Userland/Libraries/LibGfx", + ] + if (current_os == "linux") { + libs = [ + "GL", + "EGL", + ] + } + sources = [ + "Canvas.cpp", + "Canvas.h", + "Context.cpp", + "Context.h", + "Forward.h", + "Painter.cpp", + "Painter.h", + ] +}