1cc_library_static {
2    name: "libsystemproperties",
3    defaults: ["libc_defaults"],
4    native_bridge_supported: true,
5    srcs: [
6        "context_node.cpp",
7        "contexts_split.cpp",
8        "contexts_serialized.cpp",
9        "prop_area.cpp",
10        "prop_info.cpp",
11        "system_properties.cpp",
12    ],
13    whole_static_libs: [
14        "libpropertyinfoparser",
15    ],
16    header_libs: [
17        "libasync_safe_headers",
18    ],
19
20    include_dirs: [
21        "bionic/libc",
22        "bionic/libstdc++/include",
23    ],
24    export_include_dirs: ["include"],
25}
26