File: Android.mk

package info (click to toggle)
libyami-utils 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,808 kB
  • sloc: cpp: 8,785; ansic: 1,116; sh: 507; python: 352; makefile: 219
file content (29 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
include $(LOCAL_PATH)/../common.mk

LOCAL_SRC_FILES := \
    ../tests/decodeinput.cpp \
    ../tests/vppinputoutput.cpp \
    androidplayer.cpp

LOCAL_C_INCLUDES:= \
        $(LOCAL_PATH)/.. \
        $(LOCAL_PATH)/../interface \
        $(LOCAL_PATH)/../tests \
        external/libcxx/include \
        $(TARGET_OUT_HEADERS)/libva

LOCAL_SHARED_LIBRARIES := \
        libutils \
        liblog \
        libc++ \
        libva \
        libva-android \
        libgui \
        libhardware \
        libyami \

LOCAL_MODULE := androidplayer
include $(BUILD_EXECUTABLE)