mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
22 lines
532 B
Text
22 lines
532 B
Text
import("//Meta/gn/build/toolchain/compiler.gni")
|
|
|
|
group("default") {
|
|
deps = [
|
|
"//Ladybird:ladybird",
|
|
"//Meta/Lagom/Tools/CodeGenerators/IPCCompiler",
|
|
"//Tests",
|
|
"//Userland/Libraries/LibWeb",
|
|
"//Userland/Utilities:js",
|
|
]
|
|
testonly = true
|
|
}
|
|
|
|
group("serenity") {
|
|
deps = [ "//Kernel(//Meta/gn/build/toolchain:serenity)" ]
|
|
}
|
|
|
|
# A pool called "console" in the root BUILD.gn is magic and represents ninja's
|
|
# built-in console pool. (Requires a GN with `gn --version` >= 552353.)
|
|
pool("console") {
|
|
depth = 1
|
|
}
|