summaryrefslogtreecommitdiffstats
path: root/media/libmediaplayerservice/Android.mk
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2009-12-03 11:31:19 -0800
committerAndreas Huber <andih@google.com>2009-12-03 13:21:54 -0800
commit413f523afe96aff02d2b0a7459127b8f67b2b43c (patch)
tree395251a728a780bf6d46e4ef4a721e0cf4a77f3a /media/libmediaplayerservice/Android.mk
parent8908d616cc9d74f9fe2c17f1d8d9335ee28c290d (diff)
downloadframeworks_av-413f523afe96aff02d2b0a7459127b8f67b2b43c.zip
frameworks_av-413f523afe96aff02d2b0a7459127b8f67b2b43c.tar.gz
frameworks_av-413f523afe96aff02d2b0a7459127b8f67b2b43c.tar.bz2
Refactor MediaScanner. Some steps on the way towards being able to build the tree without OpenCore.
Diffstat (limited to 'media/libmediaplayerservice/Android.mk')
-rw-r--r--media/libmediaplayerservice/Android.mk10
1 files changed, 8 insertions, 2 deletions
diff --git a/media/libmediaplayerservice/Android.mk b/media/libmediaplayerservice/Android.mk
index 4784b8e..b8defde 100644
--- a/media/libmediaplayerservice/Android.mk
+++ b/media/libmediaplayerservice/Android.mk
@@ -37,13 +37,19 @@ LOCAL_SHARED_LIBRARIES := \
libbinder \
libvorbisidec \
libsonivox \
- libopencore_player \
- libopencore_author \
libmedia \
libandroid_runtime \
libstagefright \
libstagefright_omx
+ifneq ($(BUILD_WITHOUT_PV),true)
+LOCAL_SHARED_LIBRARIES += \
+ libopencore_player \
+ libopencore_author
+else
+LOCAL_CFLAGS += -DNO_OPENCORE
+endif
+
ifneq ($(TARGET_SIMULATOR),true)
LOCAL_SHARED_LIBRARIES += libdl
endif