Home | History | Annotate | Download | only in DWARF
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 include $(CLEAR_TBLGEN_VARS)
      5 
      6 TBLGEN_TABLES := \
      7   AttrParsedAttrList.inc \
      8   CommentCommandList.inc \
      9   DiagnosticCommonKinds.inc \
     10   DeclNodes.inc \
     11   StmtNodes.inc
     12 
     13 LOCAL_SRC_FILES := \
     14   DWARFAbbreviationDeclaration.cpp \
     15   DWARFCompileUnit.cpp \
     16   DWARFDebugAbbrev.cpp \
     17   DWARFDebugAranges.cpp \
     18   DWARFDebugArangeSet.cpp \
     19   DWARFDebugInfo.cpp \
     20   DWARFDebugInfoEntry.cpp \
     21   DWARFDebugLine.cpp \
     22   DWARFDebugMacinfo.cpp \
     23   DWARFDebugMacinfoEntry.cpp \
     24   DWARFDebugPubnames.cpp \
     25   DWARFDebugPubnamesSet.cpp \
     26   DWARFDebugRanges.cpp \
     27   DWARFDeclContext.cpp \
     28   DWARFDefines.cpp \
     29   DWARFDIECollection.cpp \
     30   DWARFFormValue.cpp \
     31   DWARFLocationDescription.cpp \
     32   DWARFLocationList.cpp \
     33   LogChannelDWARF.cpp \
     34   NameToDIE.cpp \
     35   SymbolFileDWARF.cpp \
     36   SymbolFileDWARFDebugMap.cpp \
     37   UniqueDWARFASTType.cpp
     38 
     39 LOCAL_MODULE := liblldbPluginSymbolFileDWARF
     40 LOCAL_MODULE_TAGS := optional
     41 
     42 include $(LLDB_BUILD_MK)
     43 include $(CLANG_VERSION_INC_MK)
     44 include $(CLANG_TBLGEN_RULES_MK)
     45 include $(BUILD_HOST_STATIC_LIBRARY)
     46