Add prebuilt_cc_binary for bison.
am: e9c55868b7

Change-Id: I6513758a03e681e997d2ca2a34aaec78a9ba4495
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"],
+        },
+    },
+}