aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-02-08 00:07:00 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-02-08 00:07:00 +0000
commit03e00e139ba1ef1ac728bb9b78181cf74a6b93be (patch)
tree1ba01e2fc6c1cf7bb91f1497273ad34903cd7031
parentfceefd4e85ad3f6d5b09e97745d48bd3e7af064e (diff)
parentb710ee8c0028d6388dfc43690ffc073f30562b05 (diff)
downloadregex-re2-03e00e139ba1ef1ac728bb9b78181cf74a6b93be.tar.gz
-rw-r--r--Android.mk61
1 files changed, 0 insertions, 61 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index d9b04eb..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,61 +0,0 @@
-#
-# Copyright 2012 Google Inc. All Rights Reserved.
-# Author: idh@google.com (Ian Hodson)
-#
-# Android makefile for the re2 regexp library.
-#
-
-LOCAL_PATH := $(call my-dir)
-
-regexp_re2_files := \
- util/arena.cc \
- util/hash.cc \
- util/rune.cc \
- util/stringpiece.cc \
- util/stringprintf.cc \
- util/strutil.cc \
- util/valgrind.cc \
- re2/bitstate.cc \
- re2/compile.cc \
- re2/dfa.cc \
- re2/filtered_re2.cc \
- re2/mimics_pcre.cc \
- re2/nfa.cc \
- re2/onepass.cc \
- re2/parse.cc \
- re2/perl_groups.cc \
- re2/prefilter.cc \
- re2/prefilter_tree.cc \
- re2/prog.cc \
- re2/re2.cc \
- re2/regexp.cc \
- re2/set.cc \
- re2/simplify.cc \
- re2/tostring.cc \
- re2/unicode_casefold.cc \
- re2/unicode_groups.cc
-
-MY_RE2_WARNING_FLAGS := \
- -Wall -Werror \
- -Wno-missing-field-initializers \
- -Wno-sign-compare \
- -Wno-tautological-undefined-compare \
- -Wno-unused-local-typedef \
- -Wno-unused-parameter \
-
-# Stlport version
-# =======================================================
-include $(CLEAR_VARS)
-LOCAL_MODULE := libregex-re2
-LOCAL_MODULE_TAGS := optional
-LOCAL_CPP_EXTENSION := .cc
-LOCAL_C_INCLUDES += $(LOCAL_PATH)/re2 \
- external/stlport
-LOCAL_CFLAGS := $(MY_RE2_WARNING_FLAGS)
-
-LOCAL_SRC_FILES := $(regexp_re2_files)
-LOCAL_NDK_STL_VARIANT := stlport_static
-LOCAL_SDK_VERSION := 14
-include $(BUILD_STATIC_LIBRARY)
-
-MY_RE2_WARNING_FLAGS :=