diff options
Diffstat (limited to 'libdexfile/Android.bp')
-rw-r--r-- | libdexfile/Android.bp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libdexfile/Android.bp b/libdexfile/Android.bp index 06fd19e2fe..49b1278fcb 100644 --- a/libdexfile/Android.bp +++ b/libdexfile/Android.bp @@ -72,6 +72,36 @@ cc_defaults { ], } +cc_defaults { + name: "libdexfile_static_base_defaults", + static_libs: [ + "libbase", + "libcutils", + "liblog", + "libutils", + "libz", + "libziparchive", + ], +} + +cc_defaults { + name: "libdexfile_static_defaults", + defaults: [ + "libartbase_static_defaults", + "libdexfile_static_base_defaults", + ], + static_libs: ["libdexfile"], +} + +cc_defaults { + name: "libdexfiled_static_defaults", + defaults: [ + "libartbased_static_defaults", + "libdexfile_static_base_defaults", + ], + static_libs: ["libdexfiled"], +} + gensrcs { name: "dexfile_operator_srcs", cmd: "$(location generate_operator_out) art/libdexfile $(in) > $(out)", |