summaryrefslogtreecommitdiffstats
path: root/dexdump
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2016-09-13 10:47:28 -0700
committerAndreas Gampe <agampe@google.com>2016-09-26 10:59:22 -0700
commit3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0 (patch)
treef38d8d8aae51f53e7ee6b474f47597b784fc2316 /dexdump
parent0cfe19af3b7395658210ea6044a65c9811962a7a (diff)
downloadandroid_art-3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0.tar.gz
android_art-3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0.tar.bz2
android_art-3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0.zip
ART: Use libbase logging
Move most of our logging infrastructure over to system/core/base. Retain VLOG. Using unified Android infrastructure has two main advantages. First, it reduces the complexity/maintenance burden in ART. Second, it allows to detach logging for the cases where we do not want or need a runtime, e.g., dexdump, the disassembler, etc. As a part of the latter, libbase is also supported for all hosts (including Windows). From a developer viewpoint, there are minor behavior changes for the LOG statements (see above), but otherwise usage is the same. Explicit severity enum items are in the android::base namespace now. Bug: 31338270 Test: m test-art-host Change-Id: I5abcb2f45f5b03d49951874c48544f72a283a91b
Diffstat (limited to 'dexdump')
-rw-r--r--dexdump/Android.bp5
1 files changed, 4 insertions, 1 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp
index 64f2299fa5..3e589f7c5e 100644
--- a/dexdump/Android.bp
+++ b/dexdump/Android.bp
@@ -22,7 +22,10 @@ art_cc_binary {
"dexdump.cc",
],
cflags: ["-Wall"],
- shared_libs: ["libart"],
+ shared_libs: [
+ "libart",
+ "libbase",
+ ],
}
art_cc_test {