Home | History | Annotate | Download | only in latency
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE:= rstest-latency
      5 
      6 LOCAL_SDK_VERSION := 21
      7 LOCAL_NDK_STL_VARIANT := c++_static
      8 
      9 LOCAL_SRC_FILES:= \
     10 	latency.rs \
     11 	latency.cpp
     12 
     13 LOCAL_STATIC_LIBRARIES := \
     14 	libRScpp_static
     15 
     16 include frameworks/rs/tests/cpp_api/common.mk
     17 include $(BUILD_EXECUTABLE)
     18