Home | History | Annotate | Download | only in framebuffer
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES:= \
      5 	refresh.c
      6 
      7 LOCAL_SHARED_LIBRARIES := \
      8 	libcutils
      9 
     10 LOCAL_MODULE:= test-fb-refresh
     11 
     12 LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
     13 
     14 include $(BUILD_EXECUTABLE)
     15 
     16 ##
     17 
     18 include $(CLEAR_VARS)
     19 LOCAL_SRC_FILES := fb_test.c
     20 LOCAL_MODULE = test-fb-simple
     21 LOCAL_FORCE_STATIC_EXECUTABLE := true
     22 LOCAL_STATIC_LIBRARIES := libc
     23 LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
     24 include $(BUILD_EXECUTABLE)
     25