Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 5 | LayerCache.cpp \ |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 6 | Matrix.cpp \ |
Romain Guy | 5cbbce5 | 2010-06-27 22:59:20 -0700 | [diff] [blame] | 7 | OpenGLRenderer.cpp \ |
Romain Guy | fb5e23c | 2010-07-09 13:52:56 -0700 | [diff] [blame^] | 8 | Patch.cpp \ |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 9 | PatchCache.cpp \ |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 10 | Program.cpp \ |
| 11 | TextureCache.cpp |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 12 | |
| 13 | LOCAL_C_INCLUDES += \ |
| 14 | $(JNI_H_INCLUDE) \ |
| 15 | $(LOCAL_PATH)/../../include/utils \ |
| 16 | external/skia/include/core \ |
| 17 | external/skia/include/effects \ |
| 18 | external/skia/include/images \ |
| 19 | external/skia/src/ports \ |
| 20 | external/skia/include/utils |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 21 | |
| 22 | LOCAL_MODULE_CLASS := SHARED_LIBRARIES |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 23 | LOCAL_SHARED_LIBRARIES := libcutils libutils libGLESv2 libskia |
Romain Guy | 6c81893 | 2010-07-07 15:15:32 -0700 | [diff] [blame] | 24 | LOCAL_MODULE := libhwui |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 25 | LOCAL_PRELINK_MODULE := false |
| 26 | |
| 27 | include $(BUILD_SHARED_LIBRARY) |