Meta: Add test262-runner to the GN build

This commit is contained in:
Timothy Flynn 2023-12-24 15:18:27 -05:00 committed by Andreas Kling
parent 71222845bd
commit d053d6f7bb
Notes: sideshowbarker 2024-07-18 01:43:16 +09:00

View file

@ -10,7 +10,20 @@ unittest("test-js") {
]
}
group("LibJS") {
deps = [ ":test-js" ]
testonly = true
executable("test262-runner") {
sources = [ "test262-runner.cpp" ]
include_dirs = [ "//Userland/Libraries" ]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibJS",
]
}
group("LibJS") {
testonly = true
deps = [
":test-js",
":test262-runner",
]
}