Home | History | Annotate | Download | only in Instrumentation
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 # For the host
      4 # =====================================================
      5 include $(CLEAR_VARS)
      6 
      7 LOCAL_SRC_FILES :=      \
      8      EdgeProfiling.cpp   \
      9      GCOVProfiling.cpp \
     10      Instrumentation.cpp \
     11      ProfilingUtils.cpp      \
     12      PathProfiling.cpp \
     13      OptimalEdgeProfiling.cpp
     14 
     15 LOCAL_MODULE:= libLLVMInstrumentation
     16 
     17 LOCAL_MODULE_TAGS := optional
     18 
     19 include $(LLVM_HOST_BUILD_MK)
     20 include $(BUILD_HOST_STATIC_LIBRARY)
     21