Eric Laurent | c7e5040 | 2014-03-06 14:35:55 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame^] | 5 | LOCAL_SRC_FILES:= \ |
| 6 | AudioPolicyService.cpp \ |
| 7 | AudioPolicyInterfaceImpl.cpp \ |
| 8 | AudioPolicyClientImpl.cpp |
Eric Laurent | c7e5040 | 2014-03-06 14:35:55 -0800 | [diff] [blame] | 9 | |
| 10 | LOCAL_C_INCLUDES := \ |
| 11 | $(TOPDIR)frameworks/av/services/audioflinger \ |
| 12 | $(call include-path-for, audio-effects) \ |
| 13 | $(call include-path-for, audio-utils) |
| 14 | |
| 15 | LOCAL_SHARED_LIBRARIES := \ |
| 16 | libcutils \ |
| 17 | libutils \ |
| 18 | liblog \ |
| 19 | libbinder \ |
| 20 | libmedia \ |
| 21 | libhardware \ |
| 22 | libhardware_legacy |
| 23 | |
| 24 | LOCAL_STATIC_LIBRARIES := \ |
| 25 | libmedia_helper \ |
| 26 | libserviceutility |
| 27 | |
| 28 | LOCAL_MODULE:= libaudiopolicy |
| 29 | |
| 30 | LOCAL_CFLAGS += -fvisibility=hidden |
| 31 | |
| 32 | include $(BUILD_SHARED_LIBRARY) |