Translate Makefile to Android.bp

Test: mm; adb push and run on device
Bug: 114091260
Change-Id: I3f313a746297578384db5bb452e4da91bf95b55d
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..e313829
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,10 @@
+cc_binary {
+    name: "fsverity",
+    shared_libs: ["libcrypto"],
+    cflags: [
+        "-Wall",
+        "-Wno-pointer-arith",
+        "-D_FILE_OFFSET_BITS=64"
+    ],
+    srcs: ["*.c"],
+}