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

Meta: Add gn build rules for Ladybird

This commit is contained in:
Andrew Kaster 2023-05-05 13:05:58 -06:00 committed by Andrew Kaster
parent 85c8cd5205
commit 16b83cd8fb
11 changed files with 381 additions and 0 deletions

View file

@ -0,0 +1,13 @@
shared_library("LibDiff") {
include_dirs = [ "//Userland/Libraries" ]
sources = [
"Format.cpp",
"Generator.cpp",
"Hunks.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
output_name = "diff"
}