blob: a0081efa070963f542d57a47c65c82759f66e4e0 [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001LOCAL_PATH:= $(call my-dir)
2
3#
4# Build the wrapper OpenGL ES library
5#
6
7include $(CLEAR_VARS)
8
9LOCAL_SRC_FILES:= gl_wrapper.cpp.arm gl_logger.cpp
10
11LOCAL_SHARED_LIBRARIES += libcutils libutils libui
12LOCAL_LDLIBS := -lpthread -ldl
13LOCAL_MODULE:= libGLES_CM
14
15# needed on sim build because of weird logging issues
16ifeq ($(TARGET_SIMULATOR),true)
17else
18 LOCAL_SHARED_LIBRARIES += libdl
19endif
20
21include $(BUILD_SHARED_LIBRARY)
22