summaryrefslogblamecommitdiffstats
blob: da7bcfedd5febeaaf6d4e4b3eb2145f6cfc9ad57 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                          







                                      







                                                                              

                     
                                       
 
     
# Copyright (C) 2013 Texas Instruments
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := mixer_paths.xml
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)
LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT)

# build multizone audio if the OMAP_MULTIZONE_AUDIO flag is set to true
ifeq ($(OMAP_MULTIZONE_AUDIO),true)
include $(CLEAR_VARS)

include $(LOCAL_PATH)/multizone/Android.mk

else # build the legacy audio if the OMAP_MULTIZONE_AUDIO flag is set to false

include $(CLEAR_VARS)

include $(LOCAL_PATH)/legacy/Android.mk

endif