8a0cb4ee0b
Bug: 8580410 Change-Id: I2ca4fa00dde0b574df3619134836bcb9315bd506
56 lines
1.0 KiB
Makefile
56 lines
1.0 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
BitTube.cpp \
|
|
BufferItemConsumer.cpp \
|
|
BufferQueue.cpp \
|
|
ConsumerBase.cpp \
|
|
CpuConsumer.cpp \
|
|
DisplayEventReceiver.cpp \
|
|
DummyConsumer.cpp \
|
|
GLConsumer.cpp \
|
|
GraphicBufferAlloc.cpp \
|
|
GuiConfig.cpp \
|
|
IDisplayEventConnection.cpp \
|
|
IGraphicBufferAlloc.cpp \
|
|
IGraphicBufferProducer.cpp \
|
|
ISensorEventConnection.cpp \
|
|
ISensorServer.cpp \
|
|
ISurfaceComposer.cpp \
|
|
ISurfaceComposerClient.cpp \
|
|
LayerState.cpp \
|
|
Sensor.cpp \
|
|
SensorEventQueue.cpp \
|
|
SensorManager.cpp \
|
|
Surface.cpp \
|
|
SurfaceControl.cpp \
|
|
SurfaceComposerClient.cpp \
|
|
SyncFeatures.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libbinder \
|
|
libcutils \
|
|
libEGL \
|
|
libGLESv2 \
|
|
libsync \
|
|
libui \
|
|
libutils \
|
|
liblog
|
|
|
|
|
|
LOCAL_MODULE:= libgui
|
|
|
|
ifeq ($(TARGET_BOARD_PLATFORM), tegra)
|
|
LOCAL_CFLAGS += -DDONT_USE_FENCE_SYNC
|
|
endif
|
|
ifeq ($(TARGET_BOARD_PLATFORM), tegra3)
|
|
LOCAL_CFLAGS += -DDONT_USE_FENCE_SYNC
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
ifeq (,$(ONE_SHOT_MAKEFILE))
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|
|
endif
|