1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4include $(CLEAR_TBLGEN_VARS)
5
6TBLGEN_TABLES := \
7  AttrList.inc \
8  Attrs.inc \
9  CommentCommandList.inc \
10  DiagnosticCommonKinds.inc \
11  DeclNodes.inc \
12  StmtNodes.inc
13
14lldb_Symbol_SRC_FILES := \
15  Block.cpp \
16  ClangASTContext.cpp \
17  ClangASTImporter.cpp \
18  ClangASTType.cpp \
19  ClangExternalASTSourceCallbacks.cpp \
20  ClangExternalASTSourceCommon.cpp \
21  ClangNamespaceDecl.cpp \
22  CompileUnit.cpp \
23  Declaration.cpp \
24  DWARFCallFrameInfo.cpp \
25  Function.cpp \
26  FuncUnwinders.cpp \
27  LineEntry.cpp \
28  LineTable.cpp \
29  ObjectFile.cpp \
30  SymbolContext.cpp \
31  Symbol.cpp \
32  SymbolFile.cpp \
33  SymbolVendor.cpp \
34  Symtab.cpp \
35  Type.cpp \
36  TypeList.cpp \
37  UnwindPlan.cpp \
38  UnwindTable.cpp \
39  Variable.cpp \
40  VariableList.cpp \
41  VerifyDecl.cpp
42
43LOCAL_SRC_FILES := $(lldb_Symbol_SRC_FILES)
44
45LOCAL_MODULE:= liblldbSymbol
46LOCAL_MODULE_TAGS := optional
47
48include $(LLDB_BUILD_MK)
49include $(CLANG_VERSION_INC_MK)
50include $(CLANG_TBLGEN_RULES_MK)
51include $(BUILD_HOST_STATIC_LIBRARY)
52