1cc_library { 2 name: "libgflags", 3 host_supported: true, 4 vendor_available: true, 5 recovery_available: true, 6 srcs: [ 7 "src/gflags.cc", 8 "src/gflags_completions.cc", 9 "src/gflags_reporting.cc", 10 ], 11 cflags: [ 12 "-D__STDC_FORMAT_MACROS", 13 "-DHAVE_INTTYPES_H", 14 "-DHAVE_SYS_STAT_H", 15 "-DHAVE_PTHREAD", 16 "-Wall", 17 "-Werror", 18 "-Wno-implicit-fallthrough", 19 // gflags_completions.cc:326,327 have unannotated fall-through 20 ], 21 export_include_dirs: [ 22 "android", 23 ], 24} 25