Home | History | Annotate | Download | only in ss
      1 // Copyright 2017 The Android Open Source Project
      2 
      3 cc_library {
      4     name: "libext2_ss",
      5     host_supported: true,
      6     unique_host_soname: true,
      7     defaults: ["e2fsprogs-defaults"],
      8     srcs: [
      9         "ss_err.c",
     10         "std_rqs.c",
     11         "invocation.c",
     12         "help.c",
     13         "execute_cmd.c",
     14         "listen.c",
     15         "parse.c",
     16         "error.c",
     17         "prompt.c",
     18         "request_tbl.c",
     19         "list_rqs.c",
     20         "pager.c",
     21         "requests.c",
     22         "data.c",
     23         "get_readline.c",
     24     ],
     25     shared_libs: ["libext2_com_err"],
     26     header_libs: ["libext2-headers"],
     27     export_include_dirs: ["."],
     28     export_header_lib_headers: ["libext2-headers"],
     29 }
     30