blob: a2fcc4101e0f4ee2c11a4067ba4fb613f9ffeae7 [file] [log] [blame]
Romain Guy85bf02f2010-06-22 13:11:24 -07001# Does not build for the simulator
2ifneq ($(TARGET_SIMULATOR), true)
3
Romain Guye4d01122010-06-16 18:44:05 -07004LOCAL_PATH:= $(call my-dir)
5include $(CLEAR_VARS)
6
7LOCAL_SRC_FILES:= \
Romain Guy85bf02f2010-06-22 13:11:24 -07008 Matrix.cpp \
9 OpenGLRenderer.cpp
10
11LOCAL_C_INCLUDES += \
12 $(JNI_H_INCLUDE) \
13 $(LOCAL_PATH)/../../include/utils \
14 external/skia/include/core \
15 external/skia/include/effects \
16 external/skia/include/images \
17 external/skia/src/ports \
18 external/skia/include/utils
Romain Guye4d01122010-06-16 18:44:05 -070019
20LOCAL_MODULE_CLASS := SHARED_LIBRARIES
Romain Guy85bf02f2010-06-22 13:11:24 -070021LOCAL_SHARED_LIBRARIES := libcutils libutils libGLESv2 libskia
Romain Guye4d01122010-06-16 18:44:05 -070022LOCAL_MODULE:= libhwui
23LOCAL_PRELINK_MODULE := false
24
25include $(BUILD_SHARED_LIBRARY)
Romain Guy85bf02f2010-06-22 13:11:24 -070026
27endif #simulator