Home | History | Annotate | Download | only in Breakpoint
      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_Breakpoint_SRC_FILES := \
     12   Breakpoint.cpp \
     13   BreakpointID.cpp \
     14   BreakpointIDList.cpp \
     15   BreakpointList.cpp \
     16   BreakpointLocationCollection.cpp \
     17   BreakpointLocation.cpp \
     18   BreakpointLocationList.cpp \
     19   BreakpointOptions.cpp \
     20   BreakpointResolverAddress.cpp \
     21   BreakpointResolver.cpp \
     22   BreakpointResolverFileLine.cpp \
     23   BreakpointResolverFileRegex.cpp \
     24   BreakpointResolverName.cpp \
     25   BreakpointSite.cpp \
     26   BreakpointSiteList.cpp \
     27   StoppointCallbackContext.cpp \
     28   Stoppoint.cpp \
     29   StoppointLocation.cpp \
     30   Watchpoint.cpp \
     31   WatchpointList.cpp \
     32   WatchpointOptions.cpp
     33 
     34 LOCAL_SRC_FILES := $(lldb_Breakpoint_SRC_FILES)
     35 
     36 LOCAL_MODULE:= liblldbBreakpoint
     37 LOCAL_MODULE_TAGS := optional
     38 
     39 include $(LLDB_BUILD_MK)
     40 include $(CLANG_VERSION_INC_MK)
     41 include $(CLANG_TBLGEN_RULES_MK)
     42 include $(BUILD_HOST_STATIC_LIBRARY)
     43