aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSasha Smundak <asmundak@google.com>2019-07-15 15:37:50 -0700
committerSasha Smundak <asmundak@google.com>2019-07-16 08:34:00 -0700
commitc39f01a5e6cf14091f5287db8882e53d9f8ba073 (patch)
treedf4da1282a07853691f97298328d57a679ba60ca
parentcc2b69aabbe599788cc6c2f656821e9ed78c88b4 (diff)
downloadregex-re2-c39f01a5e6cf14091f5287db8882e53d9f8ba073.tar.gz
Blueprint file
Bug: 121267023 Test: run prebuilts/clang-tools/build_prebuilts.sh on clang-tools branch Change-Id: I273968f28c47a6f67840adf0b7c57e32532abf7d
-rw-r--r--Android.bp32
1 files changed, 32 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..56551e4
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,32 @@
+cc_library_host_static {
+ name: "regex-re2",
+ srcs: [
+ "util/rune.cc",
+ "util/strutil.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/stringpiece.cc",
+ "re2/tostring.cc",
+ "re2/unicode_casefold.cc",
+ "re2/unicode_groups.cc",
+ ],
+ cflags: [
+ "-Wno-unused-parameter",
+ "-Wno-missing-field-initializers",
+ ],
+ export_include_dirs: ["."],
+}