summaryrefslogtreecommitdiffstats
path: root/opengl/libagl
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-07-11 22:12:16 -0700
committerJeff Brown <jeffbrown@google.com>2011-07-11 22:12:16 -0700
commitbaa44b89ec159fd65230cbb8ebab62d63a513b0b (patch)
tree644c9bc6ebe2b1a545a2934ce268640d8673cb0f /opengl/libagl
parent919b1a8495fb413a7e25f08bca59533146829ee4 (diff)
downloadframeworks_native-baa44b89ec159fd65230cbb8ebab62d63a513b0b.zip
frameworks_native-baa44b89ec159fd65230cbb8ebab62d63a513b0b.tar.gz
frameworks_native-baa44b89ec159fd65230cbb8ebab62d63a513b0b.tar.bz2
Remove the simulator target from all makefiles.
Bug: 5010576 Change-Id: I04d722f258951a3078fe07899f5bbe8aac02a8e8
Diffstat (limited to 'opengl/libagl')
-rw-r--r--opengl/libagl/Android.mk14
1 files changed, 6 insertions, 8 deletions
diff --git a/opengl/libagl/Android.mk b/opengl/libagl/Android.mk
index b5c018f..15e58f2 100644
--- a/opengl/libagl/Android.mk
+++ b/opengl/libagl/Android.mk
@@ -38,15 +38,13 @@ ifeq ($(ARCH_ARM_HAVE_TLS_REGISTER),true)
LOCAL_CFLAGS += -DHAVE_ARM_TLS_REGISTER
endif
-ifneq ($(TARGET_SIMULATOR),true)
- # we need to access the private Bionic header <bionic_tls.h>
- # on ARM platforms, we need to mirror the ARCH_ARM_HAVE_TLS_REGISTER
- # behavior from the bionic Android.mk file
- ifeq ($(TARGET_ARCH)-$(ARCH_ARM_HAVE_TLS_REGISTER),arm-true)
- LOCAL_CFLAGS += -DHAVE_ARM_TLS_REGISTER
- endif
- LOCAL_C_INCLUDES += bionic/libc/private
+# we need to access the private Bionic header <bionic_tls.h>
+# on ARM platforms, we need to mirror the ARCH_ARM_HAVE_TLS_REGISTER
+# behavior from the bionic Android.mk file
+ifeq ($(TARGET_ARCH)-$(ARCH_ARM_HAVE_TLS_REGISTER),arm-true)
+ LOCAL_CFLAGS += -DHAVE_ARM_TLS_REGISTER
endif
+LOCAL_C_INCLUDES += bionic/libc/private
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl
LOCAL_MODULE:= libGLES_android