aboutsummaryrefslogtreecommitdiff
path: root/C/Android.bp
blob: af1e15a92a561eb491215d4b62958810a7f82635 (plain)
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
// Copyright 2015 The Android Open Source Project

cc_library {
    name: "liblzma",
    host_supported: true,

    cflags: ["-D_7ZIP_ST", "-Wno-empty-body"],
    clang_cflags: ["-Wno-self-assign"],

    export_include_dirs: ["."],

    srcs: [
        "7zAlloc.c",
        "7zArcIn.c",
        "7zBuf2.c",
        "7zBuf.c",
        "7zCrc.c",
        "7zCrcOpt.c",
        "7zDec.c",
        "7zFile.c",
        "7zStream.c",
        "Aes.c",
        "AesOpt.c",
        "Alloc.c",
        "Bcj2.c",
        "Bra86.c",
        "Bra.c",
        "BraIA64.c",
        "CpuArch.c",
        "Delta.c",
        "LzFind.c",
        "Lzma2Dec.c",
        "Lzma2Enc.c",
        "Lzma86Dec.c",
        "Lzma86Enc.c",
        "LzmaDec.c",
        "LzmaEnc.c",
        "LzmaLib.c",
        "Ppmd7.c",
        "Ppmd7Dec.c",
        "Ppmd7Enc.c",
        "Sha256.c",
        "Sort.c",
        "Xz.c",
        "XzCrc64.c",
        "XzCrc64Opt.c",
        "XzDec.c",
        "XzEnc.c",
        "XzIn.c",
    ],
}