Ronghua Wu | 10305cc | 2015-02-22 07:55:32 -0800 | [diff] [blame] | 1 | # Build the unit tests. |
| 2 | LOCAL_PATH:= $(call my-dir) |
| 3 | include $(CLEAR_VARS) |
Ronghua Wu | 10305cc | 2015-02-22 07:55:32 -0800 | [diff] [blame] | 4 | |
| 5 | LOCAL_MODULE := DrmSessionManager_test |
| 6 | |
| 7 | LOCAL_MODULE_TAGS := tests |
| 8 | |
| 9 | LOCAL_SRC_FILES := \ |
| 10 | DrmSessionManager_test.cpp \ |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | liblog \ |
| 14 | libmediaplayerservice \ |
| 15 | libutils \ |
| 16 | |
| 17 | LOCAL_C_INCLUDES := \ |
| 18 | frameworks/av/include \ |
| 19 | frameworks/av/media/libmediaplayerservice \ |
| 20 | |
Lajos Molnar | 6d339f1 | 2015-04-17 16:15:53 -0700 | [diff] [blame^] | 21 | LOCAL_CFLAGS += -Werror -Wall |
| 22 | LOCAL_CLANG := true |
| 23 | |
Ronghua Wu | c4fb334 | 2015-03-06 12:04:09 -0800 | [diff] [blame] | 24 | LOCAL_32_BIT_ONLY := true |
| 25 | |
Ronghua Wu | 10305cc | 2015-02-22 07:55:32 -0800 | [diff] [blame] | 26 | include $(BUILD_NATIVE_TEST) |
| 27 | |