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
30
31
32
33
34
35
36
37
38
39
|
// Copyright 2017 The Android Open Source Project
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "external_e2fsprogs_license"
// to get the below license kinds:
// SPDX-license-identifier-0BSD
// SPDX-license-identifier-MIT
default_applicable_licenses: ["external_e2fsprogs_license"],
}
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"],
}
|