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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
// 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-GPL
// SPDX-license-identifier-GPL-2.0
// SPDX-license-identifier-LGPL
// SPDX-license-identifier-LGPL-2.1
// SPDX-license-identifier-LGPL-3.0
// legacy_unencumbered
default_applicable_licenses: ["external_e2fsprogs_license"],
}
cc_library {
name: "libext2fs",
host_supported: true,
ramdisk_available: true,
vendor_ramdisk_available: true,
vendor_available: true,
recovery_available: true,
unique_host_soname: true,
defaults: ["e2fsprogs-defaults"],
srcs: [
"ext2_err.c",
"alloc.c",
"alloc_sb.c",
"alloc_stats.c",
"alloc_tables.c",
"atexit.c",
"badblocks.c",
"bb_inode.c",
"bitmaps.c",
"bitops.c",
"blkmap64_ba.c",
"blkmap64_rb.c",
"blknum.c",
"block.c",
"bmap.c",
"check_desc.c",
"crc16.c",
"crc32c.c",
"csum.c",
"closefs.c",
"dblist.c",
"dblist_dir.c",
"digest_encode.c",
"dirblock.c",
"dirhash.c",
"dir_iterate.c",
"dupfs.c",
"expanddir.c",
"ext_attr.c",
"extent.c",
"fallocate.c",
"fileio.c",
"finddev.c",
"flushb.c",
"freefs.c",
"gen_bitmap.c",
"gen_bitmap64.c",
"get_num_dirs.c",
"get_pathname.c",
"getsize.c",
"getsectsize.c",
"hashmap.c",
"i_block.c",
"icount.c",
"imager.c",
"ind_block.c",
"initialize.c",
"inline.c",
"inline_data.c",
"inode.c",
"io_manager.c",
"ismounted.c",
"link.c",
"llseek.c",
"lookup.c",
"mmp.c",
"mkdir.c",
"mkjournal.c",
"namei.c",
"native.c",
"newdir.c",
"nls_utf8.c",
"openfs.c",
"progress.c",
"punch.c",
"qcow2.c",
"rbtree.c",
"read_bb.c",
"read_bb_file.c",
"res_gdt.c",
"rw_bitmaps.c",
"sha256.c",
"sha512.c",
"swapfs.c",
"symlink.c",
"undo_io.c",
"unix_io.c",
"sparse_io.c",
"unlink.c",
"valid_blk.c",
"version.c",
// get rid of this?!
"test_io.c",
],
shared_libs: [
"libext2_com_err",
"libsparse",
"libz",
],
target: {
android: {
shared_libs: ["libext2_uuid"],
},
windows: {
enabled: true,
srcs: ["windows_io.c"],
exclude_srcs: ["unix_io.c"],
},
},
header_libs: ["libext2-headers"],
export_include_dirs: ["."],
export_header_lib_headers: ["libext2-headers"],
}
|