-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
40 lines (36 loc) · 919 Bytes
/
Android.bp
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
package {
default_applicable_licenses: ["external_xz-embedded_license"],
}
// Added automatically by a large-scale-change
// See: http://go/android-license-faq
license {
name: "external_xz-embedded_license",
visibility: [":__subpackages__"],
license_kinds: [
"legacy_unencumbered",
],
license_text: [
"COPYING",
],
}
cc_library_static {
name: "libxz",
host_supported: true,
recovery_available: true,
srcs: [
"linux/lib/xz/xz_crc32.c",
"linux/lib/xz/xz_dec_bcj.c",
"linux/lib/xz/xz_dec_lzma2.c",
"linux/lib/xz/xz_dec_stream.c",
],
local_include_dirs: ["userspace"],
// Enable branch/call/jump filters. See http://b/27817327.
cflags: [
"-DXZ_DEC_X86",
"-DXZ_DEC_ARM",
"-DXZ_DEC_ARMTHUMB",
"-Wall",
"-Werror",
],
export_include_dirs: ["linux/include/linux/"],
}