Mark Salyzyn | 676ffd5 | 2014-05-15 15:12:09 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Brian Swetland | 03ee947 | 2010-08-12 18:01:08 -0700 | [diff] [blame] | 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
Jorge Lucangeli Obes | f08ba05 | 2016-07-13 16:52:24 -0400 | [diff] [blame] | 5 | LOCAL_SRC_FILES := sdcard.cpp fuse.cpp |
Mark Salyzyn | 676ffd5 | 2014-05-15 15:12:09 -0700 | [diff] [blame] | 6 | LOCAL_MODULE := sdcard |
| 7 | LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror |
Jorge Lucangeli Obes | c96f53e | 2016-07-14 14:50:14 -0400 | [diff] [blame^] | 8 | LOCAL_SHARED_LIBRARIES := libbase liblog libcutils libminijail libpackagelistparser |
Brian Swetland | 03ee947 | 2010-08-12 18:01:08 -0700 | [diff] [blame] | 9 | |
Daniel Micay | 83c0c7b | 2016-05-05 16:01:49 -0400 | [diff] [blame] | 10 | LOCAL_SANITIZE := integer |
| 11 | LOCAL_CLANG := true |
| 12 | |
Brian Swetland | 03ee947 | 2010-08-12 18:01:08 -0700 | [diff] [blame] | 13 | include $(BUILD_EXECUTABLE) |