OSDN Git Service

ANRdaemon: move trace result from /sdcard to /data am: d93aa41807
[android-x86/system-extras.git] / tests / framebuffer / Android.mk
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 := -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 := -Wno-unused-parameter
24 include $(BUILD_EXECUTABLE)