Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f3a547d authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

Merge \\\"Convert libpackagelistparser to Android.bp\\\" am: fdc396e2 am: 38feacd7

am: d0ec27ae

Change-Id: Ic43a54535435e4c3aee5fe9114ec10f1c43a2556
parents 8871e700 d0ec27ae
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
cc_library {

    name: "libpackagelistparser",
    srcs: ["packagelistparser.c"],
    shared_libs: ["liblog"],
    local_include_dirs: ["include"],
    export_include_dirs: ["include"],

    clang: true,
    sanitize: {
        misc_undefined: ["integer"],
    },
}

libpackagelistparser/Android.mk

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
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)