common: add the dash extension

* adds qcmediaplayer to boot jars if dash is unblocked
* This assumes that qcmediaplayer is being used if Dash is unblocked

* Also move Dash blocker from vendor/pa here

Change-Id: Id23ee450b68e1a1c5526cc7c0db9e9f0b23378d6
Signed-off-by: Alex Naidis <alex.naidis@linux.com>
This commit is contained in:
Alex Naidis 2016-08-05 21:18:44 +02:00
parent e9a9f3adf9
commit 51a68c598e
1 changed files with 8 additions and 0 deletions

View File

@ -19,3 +19,11 @@ PRODUCT_BOOT_JARS += dpmapi
PRODUCT_BOOT_JARS += com.qti.location.sdk
endif
# Block Dash by default
TARGET_DISABLE_DASH ?= true
# Dash extension
ifeq ($(TARGET_DISABLE_DASH),false)
PRODUCT_BOOT_JARS += qcmediaplayer
endif