blob: 228b62a3fbb9bc23853e76ca1f0131492a5ab13e (
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
|
# Build the unit tests.
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := ResourceManagerService_test
LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \
ResourceManagerService_test.cpp \
LOCAL_SHARED_LIBRARIES := \
libbinder \
liblog \
libmedia \
libresourcemanagerservice \
libutils \
LOCAL_C_INCLUDES := \
frameworks/av/include \
frameworks/av/services/mediaresourcemanager \
LOCAL_32_BIT_ONLY := true
include $(BUILD_NATIVE_TEST)
|