• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 The Android Open Source Project
2
3cc_library {
4    name: "libext2_ss",
5    host_supported: true,
6    unique_host_soname: true,
7    srcs: [
8        "ss_err.c",
9        "std_rqs.c",
10        "invocation.c",
11        "help.c",
12        "execute_cmd.c",
13        "listen.c",
14        "parse.c",
15        "error.c",
16        "prompt.c",
17        "request_tbl.c",
18        "list_rqs.c",
19        "pager.c",
20        "requests.c",
21        "data.c",
22        "get_readline.c",
23    ],
24    shared_libs: ["libext2_com_err"],
25    cflags: [
26        "-W",
27        "-Wall",
28    ],
29
30    header_libs: ["libext2-headers"],
31    export_include_dirs: ["."],
32    export_header_lib_headers: ["libext2-headers"],
33}
34