1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_library_static { 6 name: "libpropertyinfoparser", 7 host_supported: true, 8 vendor_available: true, 9 ramdisk_available: true, 10 vendor_ramdisk_available: true, 11 recovery_available: true, 12 native_bridge_supported: true, 13 srcs: ["property_info_parser.cpp"], 14 15 cppflags: [ 16 "-Wall", 17 "-Wextra", 18 "-Werror", 19 ], 20 stl: "none", 21 target: { 22 bionic: { 23 system_shared_libs: [], 24 header_libs: ["libc_headers"], 25 }, 26 }, 27 export_include_dirs: ["include"], 28} 29