blob: 2435cf081fcb96374289ccf5fcafc3d5091e1a5c [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 \
Kenny Rootacc9e7d2010-06-18 19:06:50 -07009 Process.cpp \
Kenny Root344ca102012-04-03 17:23:01 -070010 Ext4.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070011 Fat.cpp \
12 Loop.cpp \
13 Devmapper.cpp \
14 ResponseCode.cpp \
Paul Lawrence87999172014-02-20 12:21:31 -080015 CheckBattery.cpp \
Paul Lawrence707fd6c2015-04-28 22:14:15 +000016 Ext4Crypt.cpp \
Ken Sumrall9caab762013-06-11 19:10:20 -070017 VoldUtil.c \
Ken Sumrallb87937c2013-03-19 21:46:39 -070018 fstrim.c \
Jeff Sharkeydeb24052015-03-02 21:01:40 -080019 cryptfs.c \
20 Disk.cpp \
21 VolumeBase.cpp \
22 PublicVolume.cpp \
Jeff Sharkey9c484982015-03-31 10:35:33 -070023 PrivateVolume.cpp \
Jeff Sharkeydeb24052015-03-02 21:01:40 -080024 EmulatedVolume.cpp \
25 Utils.cpp \
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070026 MoveTask.cpp \
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070027 Benchmark.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070028
29common_c_includes := \
Ken Sumrall3ed82362011-01-28 23:31:16 -080030 system/extras/ext4_utils \
Daniel Rosenberge82df162014-08-15 22:19:23 +000031 system/extras/f2fs_utils \
Paul Lawrence87999172014-02-20 12:21:31 -080032 external/scrypt/lib/crypto \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070033 frameworks/native/include \
34 system/security/keystore \
35 hardware/libhardware/include/hardware \
36 system/security/softkeymaster/include/keymaster
Kenny Rootacc9e7d2010-06-18 19:06:50 -070037
38common_shared_libraries := \
39 libsysutils \
Paul Lawrence87999172014-02-20 12:21:31 -080040 libbinder \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070041 libcutils \
Ying Wang741a1692013-04-09 22:05:28 -070042 liblog \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070043 libdiskconfig \
Ken Sumrall5d4c68e2011-01-30 19:06:03 -080044 libhardware_legacy \
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080045 liblogwrap \
Ken Sumrall5cf759a2013-08-14 20:15:17 -070046 libext4_utils \
Daniel Rosenberge82df162014-08-15 22:19:23 +000047 libf2fs_sparseblock \
Robert Craigb9e3ba52014-02-04 10:53:00 -050048 libcrypto \
Paul Lawrence87999172014-02-20 12:21:31 -080049 libselinux \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070050 libutils \
51 libhardware \
Dan Albertae9e8902015-03-16 10:35:17 -070052 libsoftkeymaster \
Paul Crowley75a52022015-05-06 15:04:43 +010053 libbase
Kenny Rootacc9e7d2010-06-18 19:06:50 -070054
Kenny Rootc4c70f12013-06-14 12:11:38 -070055common_static_libraries := \
56 libfs_mgr \
Mohamad Ayyashc489d7f2015-04-06 18:15:53 -070057 libsquashfs_utils \
Geremy Condrac49f0f22013-08-07 13:12:41 -070058 libscrypt_static \
Paul Lawrence87999172014-02-20 12:21:31 -080059 libmincrypt \
60 libbatteryservice
Kenny Rootc4c70f12013-06-14 12:11:38 -070061
Dan Albertc07fa3f2014-12-18 10:00:55 -080062vold_conlyflags := -std=c11
Jeff Sharkeydeb24052015-03-02 21:01:40 -080063vold_cflags := -Werror -Wall -Wno-missing-field-initializers -Wno-unused-variable -Wno-unused-parameter
Dan Albertc07fa3f2014-12-18 10:00:55 -080064
San Mehatf1b736b2009-10-10 17:22:08 -070065include $(CLEAR_VARS)
66
Dan Albertb2aaf3a2014-09-12 10:48:12 -070067LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Kenny Rootacc9e7d2010-06-18 19:06:50 -070068LOCAL_MODULE := libvold
Dan Albertc07fa3f2014-12-18 10:00:55 -080069LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -070070LOCAL_SRC_FILES := $(common_src_files)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070071LOCAL_C_INCLUDES := $(common_c_includes)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070072LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -070073LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070074LOCAL_MODULE_TAGS := eng tests
Dan Albertc07fa3f2014-12-18 10:00:55 -080075LOCAL_CFLAGS := $(vold_cflags)
76LOCAL_CONLYFLAGS := $(vold_conlyflags)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070077
78include $(BUILD_STATIC_LIBRARY)
79
80include $(CLEAR_VARS)
San Mehatf1b736b2009-10-10 17:22:08 -070081
Dan Albertb2aaf3a2014-09-12 10:48:12 -070082LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
San Mehatf1b736b2009-10-10 17:22:08 -070083LOCAL_MODULE:= vold
Dan Albertc07fa3f2014-12-18 10:00:55 -080084LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -070085LOCAL_SRC_FILES := \
86 main.cpp \
87 $(common_src_files)
88
89LOCAL_C_INCLUDES := $(common_c_includes)
Dan Albertc07fa3f2014-12-18 10:00:55 -080090LOCAL_CFLAGS := $(vold_cflags)
91LOCAL_CONLYFLAGS := $(vold_conlyflags)
San Mehatf1b736b2009-10-10 17:22:08 -070092
Ajay Dudani87701e22014-09-17 21:02:52 -070093ifeq ($(TARGET_HW_DISK_ENCRYPTION),true)
94LOCAL_C_INCLUDES += $(TARGET_CRYPTFS_HW_PATH)
95common_shared_libraries += libcryptfs_hw
96LOCAL_CFLAGS += -DCONFIG_HW_DISK_ENCRYPTION
97endif
98
Kenny Rootacc9e7d2010-06-18 19:06:50 -070099LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -0700100LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Ken Sumrallf0679f02012-04-01 23:58:44 -0700101
San Mehatf1b736b2009-10-10 17:22:08 -0700102include $(BUILD_EXECUTABLE)
103
104include $(CLEAR_VARS)
Kenny Root7b18a7b2010-03-15 13:13:41 -0700105
Dan Albertb2aaf3a2014-09-12 10:48:12 -0700106LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Dan Albertc07fa3f2014-12-18 10:00:55 -0800107LOCAL_CLANG := true
Paul Crowleyfde9cd82015-05-06 11:27:44 +0100108LOCAL_SRC_FILES:= vdc.cpp
San Mehatf1b736b2009-10-10 17:22:08 -0700109LOCAL_MODULE:= vdc
San Mehatf1b736b2009-10-10 17:22:08 -0700110LOCAL_SHARED_LIBRARIES := libcutils
Dan Albertc07fa3f2014-12-18 10:00:55 -0800111LOCAL_CFLAGS := $(vold_cflags)
112LOCAL_CONLYFLAGS := $(vold_conlyflags)
San Mehatf1b736b2009-10-10 17:22:08 -0700113
114include $(BUILD_EXECUTABLE)