diff options
author | Romain Guy <romainguy@google.com> | 2010-06-22 13:29:14 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2010-06-22 13:29:14 -0700 |
commit | 3e168335b3422008908ac6973bb36078fd979f35 (patch) | |
tree | 6f1a6c2ef576190b470f1f200835148917f3882f /libs/hwui | |
parent | af002cf12c6924cd31715c6891d885f609ce2c5e (diff) | |
download | frameworks_base-3e168335b3422008908ac6973bb36078fd979f35.zip frameworks_base-3e168335b3422008908ac6973bb36078fd979f35.tar.gz frameworks_base-3e168335b3422008908ac6973bb36078fd979f35.tar.bz2 |
Fix simulator build again.
Change-Id: Ifd204d64eaa4c356422e3363ec0a6e6aa61c52dc
Diffstat (limited to 'libs/hwui')
-rw-r--r-- | libs/hwui/Android.mk | 5 | ||||
-rw-r--r-- | libs/hwui/Matrix.cpp | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/libs/hwui/Android.mk b/libs/hwui/Android.mk index a2fcc41..54829a2d 100644 --- a/libs/hwui/Android.mk +++ b/libs/hwui/Android.mk @@ -1,6 +1,3 @@ -# Does not build for the simulator -ifneq ($(TARGET_SIMULATOR), true) - LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) @@ -23,5 +20,3 @@ LOCAL_MODULE:= libhwui LOCAL_PRELINK_MODULE := false include $(BUILD_SHARED_LIBRARY) - -endif #simulator diff --git a/libs/hwui/Matrix.cpp b/libs/hwui/Matrix.cpp index b1eb701..68b245b 100644 --- a/libs/hwui/Matrix.cpp +++ b/libs/hwui/Matrix.cpp @@ -18,6 +18,7 @@ #include <math.h> #include <stdlib.h> +#include <string.h> #include <utils/Log.h> |