diff options
-rw-r--r-- | Android.bp | 14 |
1 files changed, 14 insertions, 0 deletions
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"], + }, + }, +} |