Home | History | Annotate | Download | only in resize
      1 // Copyright 2017 The Android Open Source Project
      2 
      3 cc_binary {
      4     name: "resize2fs",
      5     host_supported: true,
      6 
      7     srcs: [
      8         "extent.c",
      9         "resize2fs.c",
     10         "main.c",
     11         "online.c",
     12         "sim_progress.c",
     13         "resource_track.c",
     14     ],
     15     cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
     16     shared_libs: [
     17         "libext2fs",
     18         "libext2_com_err",
     19         "libext2_e2p",
     20         "libext2_uuid",
     21         "libext2_blkid",
     22     ],
     23     system_shared_libs: ["libc"],
     24 }
     25