24 lines
511 B
Text
24 lines
511 B
Text
// 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", "-Wno-macro-redefined"],
|
|
shared_libs: [
|
|
"libext2fs",
|
|
"libext2_com_err",
|
|
"libext2_e2p",
|
|
"libext2_uuid",
|
|
"libext2_blkid",
|
|
],
|
|
system_shared_libs: ["libc", "libdl"],
|
|
}
|