blob: 4651d1fec3579448a063b1872b6785e3f9a47a1d [file] [log] [blame]
// 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",
],
}