Fix mac build

I accidentally dropped the hunks that disabled the mac build when
rebasing.

Change-Id: I412325f71c4bfde7a357b50daeb966e6db32c388
diff --git a/test/Android.bp b/test/Android.bp
index 46d7c94..88bc34e 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -69,6 +69,9 @@
                 "-Wno-missing-noreturn",
             ],
         },
+        darwin: {
+            enabled: false,
+        },
         android: {
             ldflags: [
                 // Allow jni_compiler_test to find Java_MyClassNatives_bar
@@ -148,6 +151,9 @@
                 "-Wno-missing-noreturn",
             ],
         },
+        darwin: {
+            enabled: false,
+        },
     },
 }
 
@@ -175,5 +181,8 @@
                 "-lpthread",
             ],
         },
+        darwin: {
+            enabled: false,
+        },
     },
 }