allwinner_a64/android/external/tinyxml2/Android.bp
2018-08-08 16:14:42 +08:00

24 lines
418 B
Text

cc_library {
name: "libtinyxml2",
host_supported: true,
vendor_available: true,
vndk: {
enabled: true,
},
srcs: ["tinyxml2.cpp"],
shared_libs: ["liblog"],
target: {
android: {
cflags: [
// LOG_TO_ANDROID_LOGCAT
"-DDEBUG",
"-DANDROID_NDK",
],
},
},
export_include_dirs: ["."],
}