diff options
author | 2019-04-15 15:10:59 +0100 | |
---|---|---|
committer | 2019-04-15 16:05:33 +0000 | |
commit | b29ecc1a44f2741bd8287c659be1c0854d4f6365 (patch) | |
tree | 19bf8635292fcdb441d5e3e1514976c86ac96d1f | |
parent | 2e2c45efd6233b831e0ea5f763c0c27c1494e30f (diff) |
Build dexdump on mac.
Bug: 22322814
Test: make -j30 PRODUCT-sdk-sdk showcommands dist sdk_repo
Change-Id: Ibc8a0ee203ca97349debe0d2ff8ddfeb765fdfd7
-rw-r--r-- | dexdump/Android.bp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp index 10bdf5182b..c1890da5c0 100644 --- a/dexdump/Android.bp +++ b/dexdump/Android.bp @@ -38,21 +38,24 @@ art_cc_binary { "libz", "libziparchive", ], - }, - not_windows: { + }, + not_windows: { shared_libs: [ "libdexfile", "libartbase", "libbase", ], - }, - android: { + }, + android: { shared_libs: [ "libdexfile", "libartbase", "libbase", ], - }, + }, + darwin: { + enabled: true, + }, } } |