aboutsummaryrefslogtreecommitdiff
path: root/lib/Android.bp
blob: 6426af1ab13f40de06fb1df03074d4afcaf646a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2015 The Android Open Source Project

cc_library {
    name: "liblz4",
    vendor_available: true,
    vndk: {
        enabled: true,
    },
    host_supported: true,
    srcs: [
        "lz4.c",
        "lz4hc.c",
        "lz4frame.c",
        "xxhash.c",
    ],
    cflags: ["-Wall", "-Werror"],
    export_include_dirs: ["."],
}