summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/Android.mk11
1 files changed, 8 insertions, 3 deletions
diff --git a/audio/Android.mk b/audio/Android.mk
index 2d0ff86..8defccb 100644
--- a/audio/Android.mk
+++ b/audio/Android.mk
@@ -12,7 +12,6 @@
12# See the License for the specific language governing permissions and 12# See the License for the specific language governing permissions and
13# limitations under the License. 13# limitations under the License.
14 14
15ifeq ($(TARGET_BOARD_PLATFORM), $(filter $(TARGET_BOARD_PLATFORM), omap4 omap5 jacinto6))
16ifdef OMAP_ENHANCEMENT 15ifdef OMAP_ENHANCEMENT
17 16
18LOCAL_PATH := $(call my-dir) 17LOCAL_PATH := $(call my-dir)
@@ -21,6 +20,8 @@ LOCAL_PATH := $(call my-dir)
21### OMAP ABE AUDIO HAL 20### OMAP ABE AUDIO HAL
22### 21###
23 22
23ifeq ($(TARGET_BOARD_PLATFORM), $(filter $(TARGET_BOARD_PLATFORM), omap4 omap5))
24
24include $(CLEAR_VARS) 25include $(CLEAR_VARS)
25 26
26LOCAL_MODULE := audio.primary.$(TARGET_BOARD_PLATFORM) 27LOCAL_MODULE := audio.primary.$(TARGET_BOARD_PLATFORM)
@@ -38,10 +39,14 @@ LOCAL_MODULE_TAGS := optional
38 39
39include $(BUILD_SHARED_LIBRARY) 40include $(BUILD_SHARED_LIBRARY)
40 41
42endif # omap4, omap5
43
41### 44###
42### OMAP HDMI AUDIO HAL 45### OMAP HDMI AUDIO HAL
43### 46###
44 47
48ifeq ($(TARGET_BOARD_PLATFORM), $(filter $(TARGET_BOARD_PLATFORM), omap4 omap5 jacinto6))
49
45include $(CLEAR_VARS) 50include $(CLEAR_VARS)
46 51
47LOCAL_MODULE := audio.hdmi.$(TARGET_BOARD_PLATFORM) 52LOCAL_MODULE := audio.hdmi.$(TARGET_BOARD_PLATFORM)
@@ -61,5 +66,5 @@ LOCAL_MODULE_TAGS := optional
61 66
62include $(BUILD_SHARED_LIBRARY) 67include $(BUILD_SHARED_LIBRARY)
63 68
64endif 69endif # omap4, omap5, jacinto6
65endif 70endif # OMAP_ENHANCEMENT