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