Ajit Khare | effc3a7 | 2013-01-14 16:19:10 -0800 | [diff] [blame] | 1 | #/****************************************************************************** |
| 2 | #*@file Android.mk |
| 3 | #*brief Rules for copiling the source files |
| 4 | #* ******************************************************************************/ |
| 5 | |
| 6 | LOCAL_PATH:= $(call my-dir) |
| 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_MODULE_TAGS := eng |
| 10 | |
Surajit Podder | 5e24aa4 | 2013-10-11 16:54:29 +0530 | [diff] [blame] | 11 | #LOCAL_SRC_FILES := $(call all-subdir-java-files) |
| 12 | ifeq ($(PLATFORM_VERSION),4.3) |
| 13 | LOCAL_SRC_FILES :=com/qualcomm/qcmedia/QCMediaPlayer.java |
| 14 | else |
| 15 | LOCAL_SRC_FILES :=NonJB/com/qualcomm/qcmedia/QCMediaPlayer.java |
| 16 | endif |
| 17 | |
| 18 | LOCAL_SRC_FILES += com/qualcomm/qcmedia/QCTimedText.java |
Ajit Khare | effc3a7 | 2013-01-14 16:19:10 -0800 | [diff] [blame] | 19 | |
| 20 | LOCAL_MODULE := qcmediaplayer |
| 21 | LOCAL_MODULE_PATH := $(TARGET_OUT_JAVA_LIBRARIES) |
Praveen Chavan | 3503747 | 2013-09-28 01:42:28 -0700 | [diff] [blame] | 22 | |
| 23 | ifeq ($(TARGET_ENABLE_QC_AV_ENHANCEMENTS), true) |
Praveen Chavan | 9bfc9d7 | 2013-10-08 18:35:46 -0700 | [diff] [blame] | 24 | ifndef TARGET_DISABLE_DASH |
Praveen Chavan | 3503747 | 2013-09-28 01:42:28 -0700 | [diff] [blame] | 25 | include $(BUILD_JAVA_LIBRARY) |
| 26 | endif |
Praveen Chavan | 9bfc9d7 | 2013-10-08 18:35:46 -0700 | [diff] [blame] | 27 | endif |