e509980542
Switch from the internal packages.list file parser implementation to a common parser library. See Change-Id: I87a406802f95d8e7bfd8ee85f723f80e9e6b6c0c for all of the details. Change-Id: I98924dce406b322e0d402bca7fdac51f6a1e6a4b Signed-off-by: William Roberts <william.c.roberts@intel.com>
10 lines
242 B
Makefile
10 lines
242 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := sdcard.c
|
|
LOCAL_MODULE := sdcard
|
|
LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
|
|
LOCAL_SHARED_LIBRARIES := libcutils libpackagelistparser
|
|
|
|
include $(BUILD_EXECUTABLE)
|