summaryrefslogtreecommitdiff
path: root/dexdump/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'dexdump/Android.bp')
-rw-r--r--dexdump/Android.bp28
1 files changed, 10 insertions, 18 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp
index c1890da5c0..c817858677 100644
--- a/dexdump/Android.bp
+++ b/dexdump/Android.bp
@@ -27,35 +27,27 @@ art_cc_binary {
defaults: ["dexdump_defaults"],
host_supported: true,
target: {
- windows: {
- enabled: true,
- static_libs: [
- "libdexfile",
- "libartbase",
- "libbase",
- "libartpalette",
- "liblog",
- "libz",
- "libziparchive",
- ],
- },
- not_windows: {
+ android: {
shared_libs: [
"libdexfile",
"libartbase",
"libbase",
],
},
- android: {
- shared_libs: [
+ // Use static libs on host: required for Windows build and
+ // static_sdk_tools build.
+ host: {
+ enabled: true,
+ static_libs: [
"libdexfile",
"libartbase",
"libbase",
+ "libartpalette",
+ "liblog",
+ "libz",
+ "libziparchive",
],
},
- darwin: {
- enabled: true,
- },
}
}