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
commit a88ee029d7
Notes: sideshowbarker 2024-07-17 11:30:05 +09:00
2 changed files with 11 additions and 0 deletions

View file

@ -6,6 +6,7 @@ group("default") {
"//Meta/Lagom/Tools/CodeGenerators/IPCCompiler", "//Meta/Lagom/Tools/CodeGenerators/IPCCompiler",
"//Tests", "//Tests",
"//Userland/Libraries/LibWeb", "//Userland/Libraries/LibWeb",
"//Userland/Utilities:base64",
"//Userland/Utilities:js", "//Userland/Utilities:js",
] ]
testonly = true 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") { executable("js") {
sources = [ "js.cpp" ] sources = [ "js.cpp" ]
include_dirs = [ "//Userland/Libraries" ] include_dirs = [ "//Userland/Libraries" ]