1// Copyright 2005 The Android Open Source Project 2// 3// Android.mk for TinyXml. 4// 5// Add -DTIXML_USE_STL to CFLAGS to use STL. 6// 7 8// For the device 9// ===================================================== 10cc_library_shared { 11 name: "libtinyxml", 12 13 srcs: [ 14 "tinyxml.cpp", 15 "tinyxmlparser.cpp", 16 "tinyxmlerror.cpp", 17 "tinystr.cpp", 18 ], 19 20 vendor: true, 21 22 cflags: [ 23 "-Wno-implicit-fallthrough", 24 "-Wno-logical-op-parentheses", 25 "-Wno-missing-braces", 26 "-Wno-undefined-bool-conversion", 27 "-Werror", 28 ], 29} 30