ART: Detach libart-disassembler from libart
Some more intrusive changes than I would have liked, as long as
ART logging is different from libbase logging.
Fix up some includes.
Bug: 15436106
Bug: 31338270
Test: m test-art-host
Change-Id: I9fbe4b85b2d74e079a4981f3aec9af63b163a461
diff --git a/disassembler/Android.mk b/disassembler/Android.mk
index 630f3e4..6304c57 100644
--- a/disassembler/Android.mk
+++ b/disassembler/Android.mk
@@ -90,14 +90,14 @@
endif
ifeq ($$(art_static_or_shared),static)
- LOCAL_STATIC_LIBRARIES += liblog
+ LOCAL_STATIC_LIBRARIES += liblog libbase
ifeq ($$(art_ndebug_or_debug),debug)
LOCAL_STATIC_LIBRARIES += libartd
else
LOCAL_STATIC_LIBRARIES += libart
endif
else # shared
- LOCAL_SHARED_LIBRARIES += liblog
+ LOCAL_SHARED_LIBRARIES += liblog libbase
ifeq ($$(art_ndebug_or_debug),debug)
LOCAL_SHARED_LIBRARIES += libartd
else