1import("//third-party/unittest/unittest.gni") 2 3unittest("OrcJITTests") { 4 deps = [ 5 "//llvm/lib/ExecutionEngine", 6 "//llvm/lib/ExecutionEngine/Orc", 7 "//llvm/lib/ExecutionEngine/Orc/Shared", 8 "//llvm/lib/ExecutionEngine/RuntimeDyld", 9 "//llvm/lib/IR", 10 "//llvm/lib/Object", 11 "//llvm/lib/Support", 12 "//llvm/lib/Target:NativeTarget", 13 "//llvm/lib/TargetParser", 14 "//llvm/lib/Testing/Support", 15 ] 16 sources = [ 17 "CoreAPIsTest.cpp", 18 "EPCGenericJITLinkMemoryManagerTest.cpp", 19 "EPCGenericMemoryAccessTest.cpp", 20 "ExecutionSessionWrapperFunctionCallsTest.cpp", 21 "ExecutorAddressTest.cpp", 22 "IndirectionUtilsTest.cpp", 23 "JITTargetMachineBuilderTest.cpp", 24 "LazyCallThroughAndReexportsTest.cpp", 25 "LookupAndRecordAddrsTest.cpp", 26 "MapperJITLinkMemoryManagerTest.cpp", 27 "MemoryMapperTest.cpp", 28 "ObjectLinkingLayerTest.cpp", 29 "OrcCAPITest.cpp", 30 "OrcTestCommon.cpp", 31 "RTDyldObjectLinkingLayerTest.cpp", 32 "ResourceTrackerTest.cpp", 33 "SharedMemoryMapperTest.cpp", 34 "SimpleExecutorMemoryManagerTest.cpp", 35 "SimplePackedSerializationTest.cpp", 36 "SymbolStringPoolTest.cpp", 37 "TaskDispatchTest.cpp", 38 "ThreadSafeModuleTest.cpp", 39 "WrapperFunctionUtilsTest.cpp", 40 ] 41} 42