blob: 69d4ad1decf3854ab36f6a240a7e315d3e05826f [file] [log] [blame]
Ronghua Wu10305cc2015-02-22 07:55:32 -08001# Build the unit tests.
2LOCAL_PATH:= $(call my-dir)
3include $(CLEAR_VARS)
4LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
5
6LOCAL_MODULE := DrmSessionManager_test
7
8LOCAL_MODULE_TAGS := tests
9
10LOCAL_SRC_FILES := \
11 DrmSessionManager_test.cpp \
12
13LOCAL_SHARED_LIBRARIES := \
14 liblog \
15 libmediaplayerservice \
16 libutils \
17
18LOCAL_C_INCLUDES := \
19 frameworks/av/include \
20 frameworks/av/media/libmediaplayerservice \
21
22include $(BUILD_NATIVE_TEST)
23
24# Include subdirectory makefiles
25# ============================================================
26
27# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
28# team really wants is to build the stuff defined by this makefile.
29ifeq (,$(ONE_SHOT_MAKEFILE))
30include $(call first-makefiles-under,$(LOCAL_PATH))
31endif