e157b253d4
Use C++ logging for everything. Bug: 30222003 Change-Id: I5c5d85102b01df6965a515b59aa275ac85f50f00
13 lines
320 B
Makefile
13 lines
320 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := sdcard.cpp fuse.cpp
|
|
LOCAL_MODULE := sdcard
|
|
LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
|
|
LOCAL_SHARED_LIBRARIES := libbase libcutils libminijail libpackagelistparser
|
|
|
|
LOCAL_SANITIZE := integer
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_EXECUTABLE)
|