1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

Meta: Add LibJS and its dependencies to gn build

This commit is contained in:
Andrew Kaster 2023-05-05 12:42:25 -06:00 committed by Andrew Kaster
parent 1d3898f308
commit 165a67b115
5 changed files with 369 additions and 3 deletions

View file

@ -0,0 +1,17 @@
shared_library("LibSyntax") {
output_name = "syntax"
include_dirs = [
"//Userland/Libraries",
# FIXME: Why does this library need to depend on WindowServer headers?
"//Userland",
]
sources = [
"Highlighter.cpp",
"Language.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibUnicode",
]
}