Jeff Tinker | 3003807 | 2016-04-25 13:41:35 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # |
| 4 | # libmediadrm |
| 5 | # |
| 6 | |
| 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_SRC_FILES:= \ |
Marco Nelissen | 75571e4 | 2016-11-07 16:34:52 -0800 | [diff] [blame^] | 10 | Crypto.cpp \ |
| 11 | Drm.cpp \ |
| 12 | DrmSessionManager.cpp \ |
| 13 | ICrypto.cpp \ |
| 14 | IDrm.cpp \ |
| 15 | IDrmClient.cpp \ |
| 16 | IMediaDrmService.cpp \ |
| 17 | SharedLibrary.cpp |
Jeff Tinker | 3003807 | 2016-04-25 13:41:35 -0700 | [diff] [blame] | 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := \ |
Marco Nelissen | 75571e4 | 2016-11-07 16:34:52 -0800 | [diff] [blame^] | 20 | libbinder \ |
| 21 | libcutils \ |
| 22 | libdl \ |
| 23 | liblog \ |
| 24 | libmediautils \ |
| 25 | libstagefright_foundation \ |
| 26 | libutils |
Jeff Tinker | 3003807 | 2016-04-25 13:41:35 -0700 | [diff] [blame] | 27 | |
Jeff Tinker | 3003807 | 2016-04-25 13:41:35 -0700 | [diff] [blame] | 28 | LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall |
Jeff Tinker | 3003807 | 2016-04-25 13:41:35 -0700 | [diff] [blame] | 29 | |
| 30 | LOCAL_MODULE:= libmediadrm |
| 31 | |
| 32 | include $(BUILD_SHARED_LIBRARY) |
| 33 | |
| 34 | include $(call all-makefiles-under,$(LOCAL_PATH)) |