aboutsummaryrefslogtreecommitdiff
path: root/lib/blkid/Android.bp
blob: 9a3f2766c5930ab4058026fd3544b73de4b579b7 (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
// Copyright 2017 The Android Open Source Project

cc_library {
    name: "libext2_blkid",
    host_supported: true,
    unique_host_soname: true,
    srcs: [
        "cache.c",
        "dev.c",
        "devname.c",
        "devno.c",
        "getsize.c",
        "llseek.c",
        "probe.c",
        "read.c",
        "resolve.c",
        "save.c",
        "tag.c",
        "version.c",
    ],
    shared_libs: ["libext2_uuid"],

    cflags: [
        "-W",
        "-Wall",
        "-fno-strict-aliasing",
    ],

    header_libs: ["libext2-headers"],
    export_include_dirs: ["."],
    export_header_lib_headers: ["libext2-headers"],
}