Home | History | Annotate | Download | only in Utility
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 include $(CLEAR_TBLGEN_VARS)
      5 
      6 TBLGEN_TABLES := \
      7   DiagnosticCommonKinds.inc \
      8   DeclNodes.inc \
      9   StmtNodes.inc
     10 
     11 lldb_PluginUtility_SRC_FILES := \
     12   DynamicRegisterInfo.cpp \
     13   InferiorCallPOSIX.cpp \
     14   RegisterContextDarwin_arm.cpp \
     15   RegisterContextDarwin_i386.cpp \
     16   RegisterContextDarwin_x86_64.cpp \
     17   RegisterContextDummy.cpp \
     18   RegisterContextLLDB.cpp \
     19   RegisterContextMach_arm.cpp \
     20   RegisterContextMach_i386.cpp \
     21   RegisterContextMach_x86_64.cpp \
     22   RegisterContextMacOSXFrameBackchain.cpp \
     23   RegisterContextMemory.cpp \
     24   RegisterContextThreadMemory.cpp \
     25   StopInfoMachException.cpp \
     26   ThreadMemory.cpp \
     27   UnwindLLDB.cpp \
     28   UnwindMacOSXFrameBackchain.cpp
     29 
     30 LOCAL_SRC_FILES := $(lldb_PluginUtility_SRC_FILES)
     31 
     32 LOCAL_MODULE:= liblldbPluginUtility
     33 LOCAL_MODULE_TAGS := optional
     34 
     35 include $(LLDB_BUILD_MK)
     36 include $(CLANG_VERSION_INC_MK)
     37 include $(CLANG_TBLGEN_RULES_MK)
     38 include $(BUILD_HOST_STATIC_LIBRARY)
     39