1set(LLVM_LINK_COMPONENTS
2  ${LLVM_TARGETS_TO_BUILD}
3  AsmPrinter
4  BinaryFormat
5  DebugInfoDWARF
6  MC
7  Object
8  ObjectYAML
9  Support
10  )
11
12add_llvm_unittest(DebugInfoDWARFTests
13  DwarfGenerator.cpp
14  DwarfUtils.cpp
15  DWARFAcceleratorTableTest.cpp
16  DWARFDataExtractorTest.cpp
17  DWARFDebugArangeSetTest.cpp
18  DWARFDebugFrameTest.cpp
19  DWARFDebugInfoTest.cpp
20  DWARFDebugLineTest.cpp
21  DWARFDieTest.cpp
22  DWARFExpressionCompactPrinterTest.cpp
23  DWARFFormValueTest.cpp
24  DWARFListTableTest.cpp
25  DWARFLocationExpressionTest.cpp
26  )
27
28target_link_libraries(DebugInfoDWARFTests PRIVATE LLVMTestingSupport)
29