mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:17: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") {
|
||||
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",
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue