aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-01-02 20:00:33 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-02 20:00:33 +0000
commit16ba4f877ea0c32d2a491f94e092b6cf09f1b44a (patch)
treee1aa4485bc005bd47cfd12bc9f83ec3ef9f538c5
parent73ee4372dfa51a1a882a195ee48abdee4c00fbc6 (diff)
parent0393dd541c79dfda1475ef071a31215dd2811162 (diff)
downloadandroid_external_e2fsprogs-16ba4f877ea0c32d2a491f94e092b6cf09f1b44a.tar.gz
android_external_e2fsprogs-16ba4f877ea0c32d2a491f94e092b6cf09f1b44a.tar.bz2
android_external_e2fsprogs-16ba4f877ea0c32d2a491f94e092b6cf09f1b44a.zip
Merge "Build filefrag"
-rw-r--r--misc/Android.bp15
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/Android.bp b/misc/Android.bp
index ccc4fdb4..301ce5d9 100644
--- a/misc/Android.bp
+++ b/misc/Android.bp
@@ -271,3 +271,18 @@ cc_binary {
],
system_shared_libs: ["libc", "libdl"],
}
+
+//##########################################################################
+// Build filefrag
+
+cc_binary {
+ name: "filefrag",
+ host_supported: true,
+ defaults: ["e2fsprogs-defaults"],
+
+ srcs: ["filefrag.c"],
+ shared_libs: [
+ "libext2fs",
+ ],
+ system_shared_libs: ["libc", "libdl"],
+}