mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-01 13:49:05 +00:00
Meta: Add the base64 utility to the GN build
This commit is contained in:
parent
c6899b79b6
commit
a88ee029d7
Notes:
sideshowbarker
2024-07-17 11:30:05 +09:00
Author: https://github.com/trflynn89
Commit: a88ee029d7
Pull-request: https://github.com/SerenityOS/serenity/pull/23699
Issue: https://github.com/SerenityOS/serenity/issues/23689
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||||
|
|
|
@ -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" ]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue