Home | History | Annotate | Download | only in libnetdutils
      1 cc_library_shared {
      2     name: "libnetdutils",
      3     srcs: [
      4         "Fd.cpp",
      5         "Netfilter.cpp",
      6         "Netlink.cpp",
      7         "Slice.cpp",
      8         "Socket.cpp",
      9         "Status.cpp",
     10         "Syscalls.cpp",
     11         "UniqueFd.cpp",
     12         "UniqueFile.cpp",
     13     ],
     14     shared_libs: [
     15         "libbase",
     16     ],
     17     export_include_dirs: ["include"],
     18 }
     19 
     20 cc_test {
     21     name: "netdutils_test",
     22     srcs: [
     23         "SliceTest.cpp",
     24         "StatusTest.cpp",
     25         "FdTest.cpp",
     26         "SyscallsTest.cpp",
     27     ],
     28     static_libs: ["libgmock"],
     29     shared_libs: ["libnetdutils"],
     30 }
     31