diff --git a/Meta/gn/secondary/Tests/LibJS/BUILD.gn b/Meta/gn/secondary/Tests/LibJS/BUILD.gn index c685898531..e709571996 100644 --- a/Meta/gn/secondary/Tests/LibJS/BUILD.gn +++ b/Meta/gn/secondary/Tests/LibJS/BUILD.gn @@ -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", + ] }