1LOCAL_PATH:= $(call my-dir)
2
3clang_edit_SRC_FILES := \
4  Commit.cpp \
5  EditedSource.cpp \
6  RewriteObjCFoundationAPI.cpp
7
8
9# For the host only
10# =====================================================
11include $(CLEAR_VARS)
12include $(CLEAR_TBLGEN_VARS)
13
14TBLGEN_TABLES := \
15  Attrs.inc \
16  AttrList.inc \
17  CommentCommandList.inc \
18  CommentNodes.inc \
19  DeclNodes.inc \
20  DiagnosticCommonKinds.inc \
21  StmtNodes.inc
22
23LOCAL_SRC_FILES := $(clang_edit_SRC_FILES)
24
25LOCAL_MODULE:= libclangEdit
26
27LOCAL_MODULE_TAGS := optional
28
29include $(CLANG_HOST_BUILD_MK)
30include $(CLANG_VERSION_INC_MK)
31include $(CLANG_TBLGEN_RULES_MK)
32include $(BUILD_HOST_STATIC_LIBRARY)
33