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