Meta: Port 95c154d9bd to gn build

This commit is contained in:
Andrew Kaster 2023-10-29 16:04:41 -06:00
parent 95e2039abb
commit 3eb92a9324

View file

@ -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",
]
}