Home | History | Annotate | Download | only in cppbasic-shared
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES:= \
      5 	mono.rs \
      6 	compute.cpp
      7 
      8 LOCAL_SHARED_LIBRARIES := \
      9 	libRScpp \
     10 	libstlport
     11 
     12 LOCAL_MODULE:= rstest-compute-shared
     13 
     14 LOCAL_MODULE_TAGS := tests
     15 
     16 intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,)
     17 
     18 LOCAL_C_INCLUDES += external/stlport/stlport bionic/ bionic/libstdc++/include
     19 LOCAL_C_INCLUDES += frameworks/rs/cpp
     20 LOCAL_C_INCLUDES += frameworks/rs
     21 LOCAL_C_INCLUDES += $(intermediates)
     22 
     23 LOCAL_CLANG := true
     24 
     25 include $(BUILD_EXECUTABLE)
     26 
     27