summaryrefslogtreecommitdiff
path: root/tests/framebuffer/Android.mk
blob: 7f4c7125039a9f9f1aee428b76fe36ba0c8e0a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	refresh.c

LOCAL_SHARED_LIBRARIES := \
	libcutils

LOCAL_MODULE:= test-fb-refresh

LOCAL_CFLAGS := -Wno-unused-parameter

include $(BUILD_EXECUTABLE)

##

include $(CLEAR_VARS)
LOCAL_SRC_FILES := fb_test.c
LOCAL_MODULE = test-fb-simple
LOCAL_FORCE_STATIC_EXECUTABLE := true
LOCAL_STATIC_LIBRARIES := libc
LOCAL_CFLAGS := -Wno-unused-parameter
include $(BUILD_EXECUTABLE)