blob: 8c2f9c72be853db3735ac16876c676e365ba5837 [file] [log] [blame]
cc_library {
name: "libtinyxml2",
host_supported: true,
vendor_available: true,
recovery_available: true,
vndk: {
enabled: true,
},
srcs: ["tinyxml2.cpp"],
cflags: [
"-Wall",
"-Werror",
"-Wno-implicit-fallthrough",
// tinyxml2.cpp line 436, 441, 446 have -Wimplicit-fallthrough.
],
shared_libs: ["liblog"],
target: {
android: {
cflags: [
// LOG_TO_ANDROID_LOGCAT
"-DDEBUG",
"-DANDROID_NDK",
],
},
},
export_include_dirs: ["."],
}
cc_test {
name: "tinyxml2-tests",
srcs: ["xmltest.cpp"],
shared_libs: ["libtinyxml2"],
data: [
"resources/**/*",
],
}