diff options
author | Ying Wang <wangying@google.com> | 2011-03-11 15:49:56 -0800 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2011-03-11 15:49:56 -0800 |
commit | ce52ba385f7f84cd47fdf004640de8f53181114d (patch) | |
tree | 651e700e1ab6e9b661eb9ddeaf5b82cc1b45f9fe /dexdump | |
parent | 10185db0dfd6ed95bf5cad8a4756158bc6b375d6 (diff) | |
download | android_dalvik-ce52ba385f7f84cd47fdf004640de8f53181114d.tar.gz android_dalvik-ce52ba385f7f84cd47fdf004640de8f53181114d.tar.bz2 android_dalvik-ce52ba385f7f84cd47fdf004640de8f53181114d.zip |
Build libdexdump_static.
Which will be used in libdexdumpjni.
Change-Id: I7431fdcd006b4c4cf92e3565265830a39ccf3084
Diffstat (limited to 'dexdump')
-rw-r--r-- | dexdump/Android.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dexdump/Android.mk b/dexdump/Android.mk index 89749d61c..58fa13720 100644 --- a/dexdump/Android.mk +++ b/dexdump/Android.mk @@ -47,6 +47,14 @@ LOCAL_MODULE_TAGS := optional LOCAL_LDLIBS += include $(BUILD_EXECUTABLE) +include $(CLEAR_VARS) +LOCAL_MODULE := libdexdump_static +LOCAL_SRC_FILES := $(dexdump_src_files) +LOCAL_C_INCLUDES := $(dexdump_c_includes) +LOCAL_STATIC_LIBRARIES := $(dexdump_static_libraries) +LOCAL_MODULE_TAGS := optional +include $(BUILD_STATIC_LIBRARY) + endif # !SDK_ONLY |