summaryrefslogtreecommitdiffstats
path: root/fmapp2/Android.mk
blob: 26c67910e059fca6bfadee4696864a0396d277ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(call all-java-files-under, src/com/caf/fmradio) \
        src/com/caf/fmradio/IFMRadioServiceCallbacks.aidl \
        src/com/caf/fmradio/IFMRadioService.aidl \
        src/com/caf/fmradio/IFMTransmitterServiceCallbacks.aidl \
        src/com/caf/fmradio/IFMTransmitterService.aidl \


ifeq (1,$(filter 1,$(shell echo "$$(( $(PLATFORM_SDK_VERSION) >= 11 ))" )))
LOCAL_SRC_FILES +=  $(call all-java-files-under, src/com/caf/hc_utils)
else
LOCAL_SRC_FILES +=  $(call all-java-files-under, src/com/caf/utils)
endif
LOCAL_PACKAGE_NAME := FM2
LOCAL_CERTIFICATE := platform
LOCAL_JNI_SHARED_LIBRARIES := libqcomfm_jni
LOCAL_JAVA_LIBRARIES := qcom.fmradio

include $(BUILD_PACKAGE)