Marco Nelissen | dcb346b | 2015-09-09 10:47:29 -0700 | [diff] [blame^] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES := \ |
| 6 | main_audioserver.cpp |
| 7 | |
| 8 | LOCAL_SHARED_LIBRARIES := \ |
| 9 | libaudioflinger \ |
| 10 | libaudiopolicyservice \ |
| 11 | libbinder \ |
| 12 | liblog \ |
| 13 | libmedia \ |
| 14 | libradioservice \ |
| 15 | libsoundtriggerservice \ |
| 16 | libutils \ |
| 17 | |
| 18 | LOCAL_C_INCLUDES := \ |
| 19 | frameworks/av/services/audioflinger \ |
| 20 | frameworks/av/services/audiopolicy \ |
| 21 | frameworks/av/services/audiopolicy/common/managerdefinitions/include \ |
| 22 | frameworks/av/services/audiopolicy/common/include \ |
| 23 | frameworks/av/services/audiopolicy/engine/interface \ |
| 24 | frameworks/av/services/audiopolicy/service \ |
| 25 | frameworks/av/services/radio \ |
| 26 | frameworks/av/services/soundtrigger \ |
| 27 | $(call include-path-for, audio-utils) \ |
| 28 | external/sonic \ |
| 29 | |
| 30 | LOCAL_MODULE := audioserver |
| 31 | LOCAL_32_BIT_ONLY := true |
| 32 | |
| 33 | LOCAL_INIT_RC := audioserver.rc |
| 34 | |
| 35 | include $(BUILD_EXECUTABLE) |