blob: 3be1d605289bf746d8e6704e6dcb8ebc4a3f3dd7 [file] [log] [blame]
Jeff Tinker30038072016-04-25 13:41:35 -07001LOCAL_PATH:= $(call my-dir)
2
3#
4# libmediadrm
5#
6
7include $(CLEAR_VARS)
8
9LOCAL_SRC_FILES:= \
10 Crypto.cpp \
11 Drm.cpp \
12 DrmSessionManager.cpp \
13 SharedLibrary.cpp
14
15LOCAL_SHARED_LIBRARIES := \
16 libbinder \
Jeff Tinker30038072016-04-25 13:41:35 -070017 libcutils \
18 libdl \
19 liblog \
20 libmedia \
21 libstagefright \
Jeff Tinker30038072016-04-25 13:41:35 -070022 libutils
23
Jeff Tinker30038072016-04-25 13:41:35 -070024LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
25LOCAL_CLANG := true
26
27LOCAL_MODULE:= libmediadrm
28
29include $(BUILD_SHARED_LIBRARY)
30
31include $(call all-makefiles-under,$(LOCAL_PATH))