blob: 3c4bdc346680173b4e5f9e5b56a373ed918c8dab [file] [log] [blame]
cc_defaults {
name: "propertyinfoserializer_defaults",
host_supported: true,
vendor_available: true,
cpp_std: "experimental",
cppflags: [
"-Wall",
"-Wextra",
"-Werror",
],
static_libs: [
"libpropertyinfoparser",
"libbase",
],
}
cc_library_static {
name: "libpropertyinfoserializer",
defaults: ["propertyinfoserializer_defaults"],
srcs: [
"property_info_file.cpp",
"property_info_serializer.cpp",
"trie_builder.cpp",
"trie_serializer.cpp",
],
export_include_dirs: ["include"],
}
cc_test {
name: "propertyinfoserializer_tests",
defaults: ["propertyinfoserializer_defaults"],
srcs: [
"trie_builder_test.cpp",
"property_info_serializer_test.cpp",
],
static_libs: ["libpropertyinfoserializer"],
test_suites: ["device-tests"],
}