| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | # Component build |
| 4 | ####################################################################### |
| 5 | |
| 6 | include $(CLEAR_VARS) |
| 7 | |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | src/Engine.cpp \ |
| 10 | src/EngineInstance.cpp \ |
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 11 | |
| 12 | audio_policy_engine_includes_common := \ |
| 13 | $(LOCAL_PATH)/include \ |
| 14 | $(TOPDIR)frameworks/av/services/audiopolicy/engine/interface |
| 15 | |
| 16 | LOCAL_CFLAGS += \ |
| 17 | -Wall \ |
| 18 | -Werror \ |
| 19 | -Wextra \ |
| 20 | |
| 21 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 22 | $(audio_policy_engine_includes_common) |
| 23 | |
| 24 | LOCAL_C_INCLUDES := \ |
| 25 | $(audio_policy_engine_includes_common) \ |
| 26 | $(TARGET_OUT_HEADERS)/hw \ |
| 27 | $(call include-path-for, frameworks-av) \ |
| 28 | $(call include-path-for, audio-utils) \ |
| 29 | $(call include-path-for, bionic) \ |
| 30 | $(TOPDIR)frameworks/av/services/audiopolicy/common/include |
| 31 | |
| 32 | |
| 33 | LOCAL_MODULE := libaudiopolicyenginedefault |
| 34 | LOCAL_MODULE_TAGS := optional |
| François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 35 | |
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 36 | LOCAL_STATIC_LIBRARIES := \ |
| 37 | libmedia_helper \ |
| François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 38 | libaudiopolicycomponents \ |
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 39 | libxml2 |
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 40 | |
| 41 | LOCAL_SHARED_LIBRARIES += \ |
| 42 | libcutils \ |
| 43 | libutils \ |
| 44 | libaudioutils \ |
| 45 | |
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 46 | include $(BUILD_SHARED_LIBRARY) |