Meta: Add the base64 utility to the GN build

This commit is contained in:
Timothy Flynn 2024-03-23 17:38:23 -04:00 committed by Andreas Kling
parent c6899b79b6
commit a88ee029d7
2 changed files with 11 additions and 0 deletions

View file

@ -6,6 +6,7 @@ group("default") {
"//Meta/Lagom/Tools/CodeGenerators/IPCCompiler",
"//Tests",
"//Userland/Libraries/LibWeb",
"//Userland/Utilities:base64",
"//Userland/Utilities:js",
]
testonly = true

View file

@ -1,3 +1,13 @@
executable("base64") {
sources = [ "base64.cpp" ]
include_dirs = [ "//Userland/Libraries" ]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibMain",
]
}
executable("js") {
sources = [ "js.cpp" ]
include_dirs = [ "//Userland/Libraries" ]