Disable macOS build

There is no memalign on Darwin.
So disable the build for macOS till memalign is replaced with
an alternative.

Test: Review
Bug: 140696633

Change-Id: Icf36be19a8b6bd22cf2827e95d262020df5bdba0
diff --git a/Android.bp b/Android.bp
index 7a7f327..529ac55 100644
--- a/Android.bp
+++ b/Android.bp
@@ -412,6 +412,11 @@
     ],
     srcs: ["test/decoder/main.c"],
     static_libs: ["libhevcdec"],
+    target: {
+        darwin: {
+            enabled: false,
+        },
+    },
 }
 
 cc_library_static {
diff --git a/fuzzer/Android.bp b/fuzzer/Android.bp
index 509f951..3ea0b85 100644
--- a/fuzzer/Android.bp
+++ b/fuzzer/Android.bp
@@ -8,4 +8,9 @@
         "libhevcdec",
         "liblog",
     ],
+    target: {
+        darwin: {
+            enabled: false,
+        },
+    },
 }