diff options
author | Jamie Gennis <jgennis@google.com> | 2012-06-13 16:32:25 -0700 |
---|---|---|
committer | Jesse Hall <jessehall@google.com> | 2012-06-20 15:48:30 -0700 |
commit | d8e812ce6fe9ae0388e98b08456e1d18b9498239 (patch) | |
tree | 49d694305ba98c49997e8d92ece28da939ad13ed /libs/ui/Android.mk | |
parent | f25e183a70bd631f75dce51e85b7d568472a0cdb (diff) | |
download | frameworks_native-d8e812ce6fe9ae0388e98b08456e1d18b9498239.zip frameworks_native-d8e812ce6fe9ae0388e98b08456e1d18b9498239.tar.gz frameworks_native-d8e812ce6fe9ae0388e98b08456e1d18b9498239.tar.bz2 |
Update ANativeWindow clients for sync
This change updates the uses of ANativeWindow to use the new ANW functions that
accept and return Sync HAL fence file descriptors.
Change-Id: I3ca648b6ac33f7360e86754f924aa072f95242f6
Diffstat (limited to 'libs/ui/Android.mk')
-rw-r--r-- | libs/ui/Android.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/ui/Android.mk b/libs/ui/Android.mk index 5aff7a4..80c28a1 100644 --- a/libs/ui/Android.mk +++ b/libs/ui/Android.mk @@ -16,6 +16,7 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_SRC_FILES:= \ + Fence.cpp \ FramebufferNativeWindow.cpp \ GraphicBuffer.cpp \ GraphicBufferAllocator.cpp \ @@ -26,8 +27,9 @@ LOCAL_SRC_FILES:= \ LOCAL_SHARED_LIBRARIES := \ libcutils \ - libutils \ - libhardware + libhardware \ + libsync \ + libutils ifneq ($(BOARD_FRAMEBUFFER_FORCE_FORMAT),) LOCAL_CFLAGS += -DFRAMEBUFFER_FORCE_FORMAT=$(BOARD_FRAMEBUFFER_FORCE_FORMAT) |