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