blob: a12e0ba9cbb735e719198d90ea3913e9f5390e6f [file] [log] [blame]
cc_library {
name: "libtinyxml2",
host_supported: true,
vendor_available: true,
vndk: {
enabled: true,
},
srcs: ["tinyxml2.cpp"],
cflags: [
"-Wall",
"-Werror",
],
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/**/*",
],
}