summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp29
1 files changed, 29 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..4651d1f
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,29 @@
+// Copyright 2005 The Android Open Source Project
+//
+// Android.mk for TinyXml.
+//
+// Add -DTIXML_USE_STL to CFLAGS to use STL.
+//
+
+// For the device
+// =====================================================
+cc_library_shared {
+ name: "libtinyxml",
+
+ srcs: [
+ "tinyxml.cpp",
+ "tinyxmlparser.cpp",
+ "tinyxmlerror.cpp",
+ "tinystr.cpp",
+ ],
+
+ vendor: true,
+
+ cflags: [
+ "-Wno-implicit-fallthrough",
+ "-Wno-logical-op-parentheses",
+ "-Wno-missing-braces",
+ "-Wno-undefined-bool-conversion",
+ "-Werror",
+ ],
+}