aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Instrumentation/Android.mk
blob: d4ac0dabbe4532c81c023103577ecfa6b1749be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
LOCAL_PATH:= $(call my-dir)

# For the host
# =====================================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES :=      \
     EdgeProfiling.cpp   \
     GCOVProfiling.cpp \
     Instrumentation.cpp \
     ProfilingUtils.cpp      \
     PathProfiling.cpp \
     OptimalEdgeProfiling.cpp

LOCAL_MODULE:= libLLVMInstrumentation

LOCAL_MODULE_TAGS := optional

include $(LLVM_HOST_BUILD_MK)
include $(BUILD_HOST_STATIC_LIBRARY)