1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4include $(CLEAR_TBLGEN_VARS)
5
6TBLGEN_TABLES := \
7  DiagnosticCommonKinds.inc \
8  DeclNodes.inc \
9  StmtNodes.inc
10
11lldb_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
34LOCAL_SRC_FILES := $(lldb_Breakpoint_SRC_FILES)
35
36LOCAL_MODULE:= liblldbBreakpoint
37LOCAL_MODULE_TAGS := optional
38
39include $(LLDB_BUILD_MK)
40include $(CLANG_VERSION_INC_MK)
41include $(CLANG_TBLGEN_RULES_MK)
42include $(BUILD_HOST_STATIC_LIBRARY)
43