Add prebuilt_cc_binary for bison. am: e9c55868b7
am: 80faf1772b

Change-Id: Ia02832135859f0c94825bd024bd7a2fe0289a89b
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..b89da8c
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,14 @@
+cc_prebuilt_binary {
+    name: "bison",
+    device_supported: false,
+    host_supported: true,
+
+    target: {
+        linux: {
+            srcs: ["linux-x86/bin/bison"],
+        },
+        darwin: {
+            srcs: ["darwin-x86/bin/bison"],
+        },
+    },
+}