aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Instrumentation/Android.mk
blob: cd909335f50ea2b640f8a2b8ce4a1c8900e07e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
LOCAL_PATH:= $(call my-dir)

instrumentation_SRC_FILES := \
  AddressSanitizer.cpp \
  BoundsChecking.cpp \
  DataFlowSanitizer.cpp \
  DebugIR.cpp \
  GCOVProfiling.cpp \
  Instrumentation.cpp \
  MemorySanitizer.cpp \
  ThreadSanitizer.cpp

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

LOCAL_MODULE:= libLLVMInstrumentation
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(instrumentation_SRC_FILES)

include $(LLVM_HOST_BUILD_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_HOST_STATIC_LIBRARY)

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

LOCAL_MODULE:= libLLVMInstrumentation
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(instrumentation_SRC_FILES)

include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)