aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Hsieh <victorhsieh@google.com>2018-10-04 13:13:19 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-10-04 13:13:19 -0700
commit2a26276db459dbf84afbad992007679becf7ce19 (patch)
tree1997c6e73adb055064fa35df2c497208bf339675
parent0a80c082c092fd90a12109231c647179ab96c9f1 (diff)
parentc174d2eddbea26de4958fe8609365a3c873c3c4b (diff)
downloadfsverity-utils-2a26276db459dbf84afbad992007679becf7ce19.tar.gz
Translate Makefile to Android.bp am: bb1cf283ec am: 1769fe3896
am: c174d2eddb Change-Id: Iee43ff0ee451ec7cf92800a65c533d1f6e4383c2
-rw-r--r--Android.bp10
1 files changed, 10 insertions, 0 deletions
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"],
+}