Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame^] | 1 | # Does not build for the simulator |
| 2 | ifneq ($(TARGET_SIMULATOR), true) |
| 3 | |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 4 | LOCAL_PATH:= $(call my-dir) |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_SRC_FILES:= \ |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame^] | 8 | Matrix.cpp \ |
| 9 | OpenGLRenderer.cpp |
| 10 | |
| 11 | LOCAL_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 Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 19 | |
| 20 | LOCAL_MODULE_CLASS := SHARED_LIBRARIES |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame^] | 21 | LOCAL_SHARED_LIBRARIES := libcutils libutils libGLESv2 libskia |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 22 | LOCAL_MODULE:= libhwui |
| 23 | LOCAL_PRELINK_MODULE := false |
| 24 | |
| 25 | include $(BUILD_SHARED_LIBRARY) |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame^] | 26 | |
| 27 | endif #simulator |