blob: 9bb258f96948762e38652dc0db1f09c8001d00e5 (
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
25
26
27
28
29
|
ifeq ($(TARGET_BOARD_PLATFORM),omap4)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
ifneq ($(TARGET_DEVICE),panda)
-include $(TOP)/vendor/widevine/proprietary/cryptoPlugin/decrypt-core.mk
endif
LOCAL_C_INCLUDES:= \
$(TOP)/frameworks/native/include/media/hardware \
$(TOP)/vendor/widevine/proprietary/cryptoPlugin \
LOCAL_STATIC_LIBRARIES += \
libtee_client_api_driver \
LOCAL_SHARED_LIBRARIES := \
libstagefright_foundation \
liblog \
libcutils \
libcrypto
LOCAL_MODULE := libdrmdecrypt
LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)
endif
|