1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import("//llvm/utils/unittest/unittest.gni")
unittest("OrcJITTests") {
deps = [
"//llvm/lib/ExecutionEngine",
"//llvm/lib/ExecutionEngine/Orc",
"//llvm/lib/ExecutionEngine/RuntimeDyld",
"//llvm/lib/IR",
"//llvm/lib/Object",
"//llvm/lib/Support",
"//llvm/lib/Target:NativeTarget",
"//llvm/lib/Testing/Support",
]
sources = [
"CoreAPIsTest.cpp",
"GlobalMappingLayerTest.cpp",
"IndirectionUtilsTest.cpp",
"JITTargetMachineBuilderTest.cpp",
"LazyCallThroughAndReexportsTest.cpp",
"LazyEmittingLayerTest.cpp",
"LegacyAPIInteropTest.cpp",
"LegacyCompileOnDemandLayerTest.cpp",
"LegacyRTDyldObjectLinkingLayerTest.cpp",
"ObjectTransformLayerTest.cpp",
"OrcCAPITest.cpp",
"OrcTestCommon.cpp",
"QueueChannel.cpp",
"RPCUtilsTest.cpp",
"RTDyldObjectLinkingLayerTest.cpp",
"RemoteObjectLayerTest.cpp",
"SymbolStringPoolTest.cpp",
"ThreadSafeModuleTest.cpp",
]
}
|