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"],
}