summaryrefslogtreecommitdiff
path: root/crypto-perf/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'crypto-perf/Android.bp')
-rw-r--r--crypto-perf/Android.bp18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto-perf/Android.bp b/crypto-perf/Android.bp
new file mode 100644
index 00000000..60116891
--- /dev/null
+++ b/crypto-perf/Android.bp
@@ -0,0 +1,18 @@
+cc_binary {
+ name: "crypto",
+
+ cflags: [
+ "-O0",
+ "-march=armv8-a+crypto",
+ "-Wall",
+ "-Werror",
+ ],
+ srcs: ["crypto.cpp"],
+
+ enabled: false,
+ arch: {
+ arm64: {
+ enabled: true,
+ },
+ },
+}