diff options
author | Jack Palevich <jackpal@google.com> | 2010-01-09 21:54:28 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-01-09 21:54:28 -0800 |
commit | 91ea437c47ec1fde57746d757a46b8f56c9f3731 (patch) | |
tree | 02e006c44a49085c3359169c33b2dcaed4d96203 /opengl/libs/Android.mk | |
parent | 370c36a17559166d7b21beb42ccbabd332b813ae (diff) | |
parent | 8577a7d4521a17ca3836ca0656f771072dfd66c9 (diff) | |
download | frameworks_native-91ea437c47ec1fde57746d757a46b8f56c9f3731.zip frameworks_native-91ea437c47ec1fde57746d757a46b8f56c9f3731.tar.gz frameworks_native-91ea437c47ec1fde57746d757a46b8f56c9f3731.tar.bz2 |
am 6d0f6c78: Merge "DO NOT MERGE A library for encoding and decoding ETC1 textures." into eclair
Merge commit '6d0f6c78037225ef5648d10e45a513a2e7c612b5' into eclair-plus-aosp
* commit '6d0f6c78037225ef5648d10e45a513a2e7c612b5':
DO NOT MERGE A library for encoding and decoding ETC1 textures.
Diffstat (limited to 'opengl/libs/Android.mk')
-rw-r--r-- | opengl/libs/Android.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/opengl/libs/Android.mk b/opengl/libs/Android.mk index 6d20e80..37b9a43 100644 --- a/opengl/libs/Android.mk +++ b/opengl/libs/Android.mk @@ -120,3 +120,19 @@ ifeq ($(ARCH_ARM_HAVE_TLS_REGISTER),true) endif include $(BUILD_SHARED_LIBRARY) + +############################################################################### +# Build the ETC1 host static library +# + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= \ + ETC1/etc1.cpp \ +# + +LOCAL_LDLIBS := -lpthread -ldl +LOCAL_MODULE:= libETC1 + +include $(BUILD_HOST_STATIC_LIBRARY) + |