mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 12:05:15 +00:00
Meta: Add test262-runner to the GN build
This commit is contained in:
parent
71222845bd
commit
d053d6f7bb
Notes:
sideshowbarker
2024-07-18 01:43:16 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/d053d6f7bb Pull-request: https://github.com/SerenityOS/serenity/pull/22424 Reviewed-by: https://github.com/shannonbooth ✅
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
Reference in a new issue