summaryrefslogtreecommitdiff
path: root/tests/memtest/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/memtest/Android.bp')
-rw-r--r--tests/memtest/Android.bp31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/memtest/Android.bp b/tests/memtest/Android.bp
new file mode 100644
index 00000000..cf8b286e
--- /dev/null
+++ b/tests/memtest/Android.bp
@@ -0,0 +1,31 @@
+// Copyright 2006 The Android Open Source Project
+
+cc_binary {
+ name: "memtest",
+
+ srcs: [
+ "memtest.cpp",
+ "fptest.cpp",
+ "thumb.cpp",
+ "bandwidth.cpp",
+ ],
+
+ cflags: [
+ "-fomit-frame-pointer",
+ "-Wall",
+ "-Werror",
+ ],
+
+ sanitize: {
+ never: true,
+ },
+
+ enabled: false,
+ arch: {
+ arm: {
+ enabled: true,
+ instruction_set: "thumb",
+ },
+ },
+
+}