mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
29 lines
773 B
Text
29 lines
773 B
Text
template("unittest") {
|
|
executable(target_name) {
|
|
has_custom_main = false
|
|
use_js_main = false
|
|
|
|
# Foward everything (has_custom_main if set; configs, sources, deps, ...).
|
|
forward_variables_from(invoker, "*")
|
|
assert(!defined(invoker.output_dir), "cannot set unittest output_dir")
|
|
assert(!defined(invoker.testonly), "cannot set unittest testonly")
|
|
|
|
if (!defined(invoker.deps)) {
|
|
deps = []
|
|
}
|
|
|
|
deps += [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
if (has_custom_main) {
|
|
deps += [ "//Userland/Libraries/LibTest" ]
|
|
} else if (use_js_main) {
|
|
deps += [ "//Userland/Libraries/LibTest:test_js_main" ]
|
|
} else {
|
|
deps += [ "//Userland/Libraries/LibTest:test_main" ]
|
|
}
|
|
|
|
testonly = true
|
|
}
|
|
}
|