7c6eba6669
this flag should be enabled for all targets, but currently some have issues with it, so we're turning it on only for tested targets. this will hopefully resolve some performance issues. Bug: 5553562, 5631630 Change-Id: I54c7a9e2068586898ab13e405d95534669260537
44 lines
809 B
Makefile
44 lines
809 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
ISensorEventConnection.cpp \
|
|
ISensorServer.cpp \
|
|
ISurfaceTexture.cpp \
|
|
Sensor.cpp \
|
|
SensorChannel.cpp \
|
|
SensorEventQueue.cpp \
|
|
SensorManager.cpp \
|
|
SurfaceTexture.cpp \
|
|
SurfaceTextureClient.cpp \
|
|
ISurfaceComposer.cpp \
|
|
ISurface.cpp \
|
|
ISurfaceComposerClient.cpp \
|
|
IGraphicBufferAlloc.cpp \
|
|
LayerState.cpp \
|
|
Surface.cpp \
|
|
SurfaceComposerClient.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libui \
|
|
libEGL \
|
|
libGLESv2 \
|
|
|
|
|
|
LOCAL_MODULE:= libgui
|
|
|
|
ifeq ($(TARGET_BOARD_PLATFORM), tegra)
|
|
LOCAL_CFLAGS += -DALLOW_DEQUEUE_CURRENT_BUFFER
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
ifeq (,$(ONE_SHOT_MAKEFILE))
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|
|
endif
|