summaryrefslogtreecommitdiffstats
path: root/services/mediaresourcemanager/Android.mk
diff options
context:
space:
mode:
authorRonghua Wu <ronghuawu@google.com>2015-05-07 13:58:22 -0700
committerRonghua Wu <ronghuawu@google.com>2015-05-07 14:10:19 -0700
commita8ec8fcf6982ef158daf897faaab3e45285d0bf1 (patch)
treefe427de81c8f25b5dfd56406a8ed5aa7381a8045 /services/mediaresourcemanager/Android.mk
parent78d9a2e77e8ee153945d93624b01f0525f979299 (diff)
downloadframeworks_av-a8ec8fcf6982ef158daf897faaab3e45285d0bf1.zip
frameworks_av-a8ec8fcf6982ef158daf897faaab3e45285d0bf1.tar.gz
frameworks_av-a8ec8fcf6982ef158daf897faaab3e45285d0bf1.tar.bz2
mediaresourcemanager: add ServiceLog to track the calling history for dumpsys.
Bug: 20637674 Change-Id: I9d74d98f8eb729a8681877f86419aa2c979f3b7c
Diffstat (limited to 'services/mediaresourcemanager/Android.mk')
-rw-r--r--services/mediaresourcemanager/Android.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/services/mediaresourcemanager/Android.mk b/services/mediaresourcemanager/Android.mk
index 84218cf..b72230f 100644
--- a/services/mediaresourcemanager/Android.mk
+++ b/services/mediaresourcemanager/Android.mk
@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := ResourceManagerService.cpp
+LOCAL_SRC_FILES := ResourceManagerService.cpp ServiceLog.cpp
LOCAL_SHARED_LIBRARIES := libmedia libstagefright libbinder libutils liblog
@@ -13,6 +13,9 @@ LOCAL_32_BIT_ONLY := true
LOCAL_C_INCLUDES += \
$(TOPDIR)frameworks/av/include
+LOCAL_CFLAGS += -Werror -Wall
+LOCAL_CLANG := true
+
include $(BUILD_SHARED_LIBRARY)
include $(call all-makefiles-under,$(LOCAL_PATH))