You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
474 B
24 lines
474 B
# For putsurface |
|
# ===================================================== |
|
|
|
LOCAL_PATH:= $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES := \ |
|
putsurface_android.cpp |
|
#putsurface_x11.c |
|
|
|
LOCAL_CFLAGS += \ |
|
-DANDROID -Wno-unused-parameter |
|
|
|
LOCAL_C_INCLUDES += \ |
|
$(TARGET_OUT_HEADERS)/libva |
|
|
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_MODULE := putsurface |
|
|
|
LOCAL_SHARED_LIBRARIES := libva-android libva libdl libdrm libcutils libutils libgui |
|
|
|
include $(BUILD_EXECUTABLE) |
|
|
|
|