diff options
author | Elliott Hughes <enh@google.com> | 2014-07-24 15:42:39 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-07-24 15:42:39 -0700 |
commit | 56687f7cbf0a3d7909830fc1390a98c713a05e6f (patch) | |
tree | 2ae71fdc3623b692c83f406bf9b10b9f2ba5cca3 | |
parent | 2e25819fffbb23d42541ead1bf735f3a02fa0330 (diff) | |
download | frameworks_av-56687f7cbf0a3d7909830fc1390a98c713a05e6f.zip frameworks_av-56687f7cbf0a3d7909830fc1390a98c713a05e6f.tar.gz frameworks_av-56687f7cbf0a3d7909830fc1390a98c713a05e6f.tar.bz2 |
Remove last user of <cutils/tztime.h>.
Bug: 15765976
Change-Id: Ib21abe9349bb1863304cd7618d8fc95ca254e8f6
-rw-r--r-- | media/mtp/Android.mk | 3 | ||||
-rw-r--r-- | media/mtp/MtpUtils.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/media/mtp/Android.mk b/media/mtp/Android.mk index ac608a1..3af0956 100644 --- a/media/mtp/Android.mk +++ b/media/mtp/Android.mk @@ -39,9 +39,6 @@ LOCAL_MODULE:= libmtp LOCAL_CFLAGS := -DMTP_DEVICE -DMTP_HOST -# Needed for <bionic_time.h> -LOCAL_C_INCLUDES := bionic/libc/private - LOCAL_SHARED_LIBRARIES := libutils libcutils liblog libusbhost libbinder include $(BUILD_SHARED_LIBRARY) diff --git a/media/mtp/MtpUtils.cpp b/media/mtp/MtpUtils.cpp index 6ec8876..0667bdd 100644 --- a/media/mtp/MtpUtils.cpp +++ b/media/mtp/MtpUtils.cpp @@ -19,7 +19,8 @@ #include <stdio.h> #include <time.h> -#include <cutils/tztime.h> +#include <../private/bionic_time.h> /* TODO: switch this code to icu4c! */ + #include "MtpUtils.h" namespace android { |