summaryrefslogtreecommitdiffstats
path: root/libpackagelistparser/Android.mk
diff options
context:
space:
mode:
authorWilliam Roberts <william.c.roberts@intel.com>2015-11-05 12:12:38 -0800
committerWilliam Roberts <william.c.roberts@intel.com>2015-11-05 12:12:38 -0800
commitf420ff1ca73a1b17e33b404594e593d522fd696e (patch)
tree1c5280a673c7b490d12c774339adb487520d7f73 /libpackagelistparser/Android.mk
parent0f61f868703ef078f51549a41c1e59960692cd42 (diff)
downloadsystem_core-f420ff1ca73a1b17e33b404594e593d522fd696e.tar.gz
system_core-f420ff1ca73a1b17e33b404594e593d522fd696e.tar.bz2
system_core-f420ff1ca73a1b17e33b404594e593d522fd696e.zip
packagelistparser: rename to libpackagelistparser
When packagelistparser was moved from frameworks/base/libs to system/core it was never renamed in-line with things in system/core. Libs start with lib, executables or subdirs do not. For example, libusb versus logwrapper show the lib versus executable naming split. Change-Id: Ia1ed404347927ecfc2d037c83b2fe2a68b3966ba Signed-off-by: William Roberts <william.c.roberts@intel.com>
Diffstat (limited to 'libpackagelistparser/Android.mk')
-rw-r--r--libpackagelistparser/Android.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/libpackagelistparser/Android.mk b/libpackagelistparser/Android.mk
new file mode 100644
index 000000000..c8be050e0
--- /dev/null
+++ b/libpackagelistparser/Android.mk
@@ -0,0 +1,32 @@
+LOCAL_PATH:= $(call my-dir)
+
+#########################
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := libpackagelistparser
+LOCAL_MODULE_TAGS := optional
+LOCAL_SRC_FILES := packagelistparser.c
+LOCAL_SHARED_LIBRARIES := liblog
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
+
+LOCAL_CLANG := true
+LOCAL_SANITIZE := integer
+
+include $(BUILD_SHARED_LIBRARY)
+
+#########################
+include $(CLEAR_VARS)
+
+
+LOCAL_MODULE := libpackagelistparser
+LOCAL_MODULE_TAGS := optional
+LOCAL_SRC_FILES := packagelistparser.c
+LOCAL_STATIC_LIBRARIES := liblog
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
+
+LOCAL_CLANG := true
+LOCAL_SANITIZE := integer
+
+include $(BUILD_STATIC_LIBRARY)