2023-05-25 17:56:06 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class WebTests : TestModuleRules
|
|
|
|
|
{
|
2024-05-01 11:35:44 -04:00
|
|
|
static WebTests()
|
|
|
|
|
{
|
2024-05-06 13:09:50 -04:00
|
|
|
if (InTestMode)
|
|
|
|
|
{
|
|
|
|
|
TestMetadata = new Metadata();
|
|
|
|
|
TestMetadata.TestName = "Web";
|
|
|
|
|
TestMetadata.TestShortName = "Web";
|
|
|
|
|
TestMetadata.ReportType = "xml";
|
|
|
|
|
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.Linux);
|
|
|
|
|
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.Mac);
|
|
|
|
|
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.Android);
|
|
|
|
|
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.IOS);
|
2024-05-01 11:35:44 -04:00
|
|
|
|
2024-05-06 13:09:50 -04:00
|
|
|
TestMetadata.HasAfterSteps = true;
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.Win64, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.Linux, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.LinuxArm64, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.Mac, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.IOS, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.TVOS, "-allmodules");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.Android, "-allmodules -architectures=arm64");
|
|
|
|
|
TestMetadata.PlatformCompilationExtraArgs.Add(UnrealTargetPlatform.VisionOS, "-allmodules");
|
|
|
|
|
}
|
2024-05-01 11:35:44 -04:00
|
|
|
}
|
|
|
|
|
|
2023-05-25 17:56:06 -04:00
|
|
|
public WebTests(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"ApplicationCore",
|
|
|
|
|
"Core",
|
|
|
|
|
"HTTP",
|
2023-12-13 13:40:37 -05:00
|
|
|
"HTTPServer",
|
2023-08-17 18:35:29 -04:00
|
|
|
"WebSockets",
|
2023-10-24 22:46:04 -04:00
|
|
|
"Json"
|
2023-05-25 17:56:06 -04:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-18 16:48:57 -04:00
|
|
|
|
|
|
|
|
|