aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-07-25 22:37:10 -0700
committerElliott Hughes <enh@google.com>2017-07-25 22:37:10 -0700
commitc991aa5c2a6da248ea95871d23880c25ebe2974e (patch)
tree2b6b586b5f5735237beb55a9fead1296a00c11fd
parent853ef375ba2ce430f5b13b556812b2d83ccc82e1 (diff)
downloadlibutf-o-iot-preview-5.tar.gz
Bug: N/A Test: builds Change-Id: Ic4ef6368794a2bcb52f2570e83bd92d66d78ba12
-rw-r--r--Android.mk38
1 files changed, 0 insertions, 38 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 1858e50..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-
-utf_src := \
- rune.c \
- runestrcat.c \
- runestrchr.c \
- runestrcmp.c \
- runestrcpy.c \
- runestrdup.c \
- runestrlen.c \
- runestrecpy.c \
- runestrncat.c \
- runestrncmp.c \
- runestrncpy.c \
- runestrrchr.c \
- runestrstr.c \
- runetype.c \
- utfecpy.c \
- utflen.c \
- utfnlen.c \
- utfrrune.c \
- utfrune.c \
- utfutf.c
-
-utf_cflags := -Wall -Wno-missing-braces -Wno-parentheses -Wno-switch
-
-# We only build the static library at the moment.
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libutf
-LOCAL_MODULE_TAGS := optional
-LOCAL_SRC_FILES := $(utf_src)
-LOCAL_CFLAGS += -O3 $(utf_cflags)
-LOCAL_ARM_MODE := arm
-LOCAL_SDK_VERSION := 14
-
-include $(BUILD_STATIC_LIBRARY)
-