Home | History | Annotate | Download | only in tinyxml2
      1 cc_library {
      2     name: "libtinyxml2",
      3     host_supported: true,
      4     vendor_available: true,
      5     vndk: {
      6         enabled: true,
      7     },
      8 
      9     srcs: ["tinyxml2.cpp"],
     10 
     11     shared_libs: ["liblog"],
     12 
     13     target: {
     14         android: {
     15             cflags: [
     16                 // LOG_TO_ANDROID_LOGCAT
     17                 "-DDEBUG",
     18                 "-DANDROID_NDK",
     19             ],
     20         },
     21     },
     22 
     23     export_include_dirs: ["."],
     24 }
     25