Mark libbcinfo as a SHARED_LIBRARY dependency.

ART's compiler depends on libbcc, which transitively depends on libbcinfo.
Without the direct specification, it is possible to end up with a build that
fails to link.

Change-Id: I8a7237e2d5ed8118e4f4d78031ac528d0905c070
diff --git a/compiler/Android.mk b/compiler/Android.mk
index 40a74c1..0bb8770 100644
--- a/compiler/Android.mk
+++ b/compiler/Android.mk
@@ -172,7 +172,7 @@
     endif
     LOCAL_SHARED_LIBRARIES += libart
   endif
-  LOCAL_SHARED_LIBRARIES += libbcc libLLVM
+  LOCAL_SHARED_LIBRARIES += libbcc libbcinfo libLLVM
 
   ifeq ($(ART_USE_PORTABLE_COMPILER),true)
     LOCAL_CFLAGS += -DART_USE_PORTABLE_COMPILER=1