aboutsummaryrefslogtreecommitdiff
path: root/resize/Android.bp
blob: 5d8f0e8b94af73fe4a0d293feefa918e7a2efaa6 (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
// Copyright 2017 The Android Open Source Project

cc_binary {
    name: "resize2fs",
    host_supported: true,

    srcs: [
        "extent.c",
        "resize2fs.c",
        "main.c",
        "online.c",
        "sim_progress.c",
        "resource_track.c",
    ],
    cflags: ["-W", "-Wall"],
    shared_libs: [
        "libext2fs",
        "libext2_com_err",
        "libext2_e2p",
        "libext2_uuid",
        "libext2_blkid",
    ],
    system_shared_libs: ["libc"],
}