~misterc/libva/Trunk

« back to all changes in this revision

Viewing changes to test/putsurface/Android.mk

  • Committer: Sean V Kelley
  • Date: 2017-02-18 23:19:05 UTC
  • Revision ID: git-v1:7b8cc07dc7a9b954b9a8c9bde5091fb2e8d443dc
PROJECT HAS MOVED

See https://github.com/01org/libva

Signed-off-by: Sean V Kelley <seanvk@posteo.de>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# For putsurface
2
 
# =====================================================
3
 
 
4
 
LOCAL_PATH:= $(call my-dir)
5
 
 
6
 
include $(CLEAR_VARS)
7
 
 
8
 
LOCAL_SRC_FILES := \
9
 
  putsurface_android.cpp
10
 
  #putsurface_x11.c
11
 
 
12
 
LOCAL_CFLAGS += \
13
 
    -DANDROID
14
 
 
15
 
LOCAL_C_INCLUDES += \
16
 
  $(TARGET_OUT_HEADERS)/libva
17
 
 
18
 
LOCAL_MODULE_TAGS := optional
19
 
LOCAL_MODULE := putsurface
20
 
 
21
 
LOCAL_SHARED_LIBRARIES := libva-android libva libdl libdrm libcutils libutils libgui
22
 
 
23
 
include $(BUILD_EXECUTABLE)
24