mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00:00
Meta: Add test262-runner to the GN build
This commit is contained in:
parent
71222845bd
commit
d053d6f7bb
1 changed files with 16 additions and 3 deletions
|
@ -10,7 +10,20 @@ unittest("test-js") {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
group("LibJS") {
|
executable("test262-runner") {
|
||||||
deps = [ ":test-js" ]
|
sources = [ "test262-runner.cpp" ]
|
||||||
testonly = true
|
include_dirs = [ "//Userland/Libraries" ]
|
||||||
|
deps = [
|
||||||
|
"//AK",
|
||||||
|
"//Userland/Libraries/LibCore",
|
||||||
|
"//Userland/Libraries/LibJS",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
group("LibJS") {
|
||||||
|
testonly = true
|
||||||
|
deps = [
|
||||||
|
":test-js",
|
||||||
|
":test262-runner",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue