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