blob: 1a8547c9af44d0587fbfc5761b41115371ef3b0f [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001LOCAL_PATH:= $(call my-dir)
2
Kenny Rootacc9e7d2010-06-18 19:06:50 -07003common_src_files := \
4 VolumeManager.cpp \
5 CommandListener.cpp \
6 VoldCommand.cpp \
7 NetlinkManager.cpp \
8 NetlinkHandler.cpp \
9 Volume.cpp \
10 DirectVolume.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070011 Process.cpp \
Kenny Root344ca102012-04-03 17:23:01 -070012 Ext4.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070013 Fat.cpp \
14 Loop.cpp \
15 Devmapper.cpp \
16 ResponseCode.cpp \
Ken Sumrall8f869aa2010-12-03 03:47:09 -080017 Xwarp.cpp \
Ken Sumrall9caab762013-06-11 19:10:20 -070018 VoldUtil.c \
Ken Sumrallb87937c2013-03-19 21:46:39 -070019 fstrim.c \
Ken Sumrall8f869aa2010-12-03 03:47:09 -080020 cryptfs.c
Kenny Rootacc9e7d2010-06-18 19:06:50 -070021
22common_c_includes := \
Ken Sumrall3ed82362011-01-28 23:31:16 -080023 system/extras/ext4_utils \
Kenny Rootc4c70f12013-06-14 12:11:38 -070024 external/openssl/include \
25 external/scrypt/lib/crypto
Kenny Rootacc9e7d2010-06-18 19:06:50 -070026
27common_shared_libraries := \
28 libsysutils \
29 libcutils \
Ying Wang741a1692013-04-09 22:05:28 -070030 liblog \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070031 libdiskconfig \
Ken Sumrall5d4c68e2011-01-30 19:06:03 -080032 libhardware_legacy \
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080033 liblogwrap \
Ken Sumrall5cf759a2013-08-14 20:15:17 -070034 libext4_utils \
Robert Craigb9e3ba52014-02-04 10:53:00 -050035 libcrypto \
36 libselinux
Kenny Rootacc9e7d2010-06-18 19:06:50 -070037
Kenny Rootc4c70f12013-06-14 12:11:38 -070038common_static_libraries := \
39 libfs_mgr \
Geremy Condrac49f0f22013-08-07 13:12:41 -070040 libscrypt_static \
Ken Sumrall5cf759a2013-08-14 20:15:17 -070041 libmincrypt
Kenny Rootc4c70f12013-06-14 12:11:38 -070042
San Mehatf1b736b2009-10-10 17:22:08 -070043include $(CLEAR_VARS)
44
Dan Albertb2aaf3a2014-09-12 10:48:12 -070045LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Kenny Rootacc9e7d2010-06-18 19:06:50 -070046LOCAL_MODULE := libvold
Kenny Rootacc9e7d2010-06-18 19:06:50 -070047LOCAL_SRC_FILES := $(common_src_files)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070048LOCAL_C_INCLUDES := $(common_c_includes)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070049LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -070050LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070051LOCAL_MODULE_TAGS := eng tests
52
Dan Albertb2aaf3a2014-09-12 10:48:12 -070053include external/stlport/libstlport.mk
Kenny Rootacc9e7d2010-06-18 19:06:50 -070054include $(BUILD_STATIC_LIBRARY)
55
56include $(CLEAR_VARS)
San Mehatf1b736b2009-10-10 17:22:08 -070057
Dan Albertb2aaf3a2014-09-12 10:48:12 -070058LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
San Mehatf1b736b2009-10-10 17:22:08 -070059LOCAL_MODULE:= vold
Kenny Rootacc9e7d2010-06-18 19:06:50 -070060LOCAL_SRC_FILES := \
61 main.cpp \
62 $(common_src_files)
63
64LOCAL_C_INCLUDES := $(common_c_includes)
Nick Kralevich9713ed42012-02-23 13:20:30 -080065LOCAL_CFLAGS := -Werror=format
Kenny Rootacc9e7d2010-06-18 19:06:50 -070066LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -070067LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Ken Sumrallf0679f02012-04-01 23:58:44 -070068
Dan Albertb2aaf3a2014-09-12 10:48:12 -070069include external/stlport/libstlport.mk
San Mehatf1b736b2009-10-10 17:22:08 -070070include $(BUILD_EXECUTABLE)
71
72include $(CLEAR_VARS)
Kenny Root7b18a7b2010-03-15 13:13:41 -070073
Dan Albertb2aaf3a2014-09-12 10:48:12 -070074LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Kenny Root7b18a7b2010-03-15 13:13:41 -070075LOCAL_SRC_FILES:= vdc.c
San Mehatf1b736b2009-10-10 17:22:08 -070076LOCAL_MODULE:= vdc
San Mehatf1b736b2009-10-10 17:22:08 -070077LOCAL_SHARED_LIBRARIES := libcutils
78
79include $(BUILD_EXECUTABLE)