2012-01-07 04:09:42 +01:00
|
|
|
# Copyright 2011 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
2015-05-22 16:43:50 +02:00
|
|
|
common_static_libraries := \
|
|
|
|
liblogwrap \
|
|
|
|
libfec \
|
|
|
|
libfec_rs \
|
|
|
|
libbase \
|
2016-03-31 16:32:09 +02:00
|
|
|
libcrypto_utils_static \
|
2015-05-22 16:43:50 +02:00
|
|
|
libcrypto_static \
|
|
|
|
libext4_utils_static \
|
2016-05-13 20:19:42 +02:00
|
|
|
libsquashfs_utils \
|
|
|
|
libselinux
|
2012-01-07 04:09:42 +01:00
|
|
|
|
2015-05-22 16:43:50 +02:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CLANG := true
|
|
|
|
LOCAL_SANITIZE := integer
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
fs_mgr.c \
|
|
|
|
fs_mgr_format.c \
|
|
|
|
fs_mgr_fstab.c \
|
|
|
|
fs_mgr_slotselect.c \
|
|
|
|
fs_mgr_verity.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
|
|
$(LOCAL_PATH)/include \
|
2013-09-05 20:19:21 +02:00
|
|
|
system/vold \
|
|
|
|
system/extras/ext4_utils \
|
2015-05-22 16:43:50 +02:00
|
|
|
external/openssl/include \
|
|
|
|
bootable/recovery
|
2012-01-07 04:09:42 +01:00
|
|
|
LOCAL_MODULE:= libfs_mgr
|
2015-05-22 16:43:50 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
|
2012-01-07 04:09:42 +01:00
|
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
|
2014-05-01 00:35:00 +02:00
|
|
|
LOCAL_CFLAGS := -Werror
|
2014-10-09 16:22:49 +02:00
|
|
|
ifneq (,$(filter userdebug,$(TARGET_BUILD_VARIANT)))
|
|
|
|
LOCAL_CFLAGS += -DALLOW_ADBD_DISABLE_VERITY=1
|
|
|
|
endif
|
2012-01-07 04:09:42 +01:00
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
2015-05-22 16:43:50 +02:00
|
|
|
LOCAL_CLANG := true
|
|
|
|
LOCAL_SANITIZE := integer
|
2012-01-07 04:09:42 +01:00
|
|
|
LOCAL_SRC_FILES:= fs_mgr_main.c
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
|
|
|
|
LOCAL_MODULE:= fs_mgr
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)/sbin
|
|
|
|
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
|
2015-05-22 16:43:50 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := libfs_mgr \
|
|
|
|
$(common_static_libraries) \
|
|
|
|
libcutils \
|
|
|
|
liblog \
|
|
|
|
libc \
|
|
|
|
libsparse_static \
|
|
|
|
libz \
|
|
|
|
libselinux
|
2015-04-01 22:26:04 +02:00
|
|
|
LOCAL_CXX_STL := libc++_static
|
2014-05-01 00:35:00 +02:00
|
|
|
LOCAL_CFLAGS := -Werror
|
2012-01-07 04:09:42 +01:00
|
|
|
include $(BUILD_EXECUTABLE)
|