blob: 66b8a63817cd5092e83228538414f1bb714f0dbf [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 \
Paul Lawrenced0b42952015-06-03 14:19:51 -07006 CryptCommandListener.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -07007 VoldCommand.cpp \
8 NetlinkManager.cpp \
9 NetlinkHandler.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070010 Process.cpp \
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070011 fs/Ext4.cpp \
12 fs/F2fs.cpp \
13 fs/Vfat.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070014 Loop.cpp \
15 Devmapper.cpp \
16 ResponseCode.cpp \
Paul Lawrence87999172014-02-20 12:21:31 -080017 CheckBattery.cpp \
Paul Lawrence707fd6c2015-04-28 22:14:15 +000018 Ext4Crypt.cpp \
Ken Sumrall9caab762013-06-11 19:10:20 -070019 VoldUtil.c \
Jeff Sharkeydeb24052015-03-02 21:01:40 -080020 cryptfs.c \
21 Disk.cpp \
22 VolumeBase.cpp \
23 PublicVolume.cpp \
Jeff Sharkey9c484982015-03-31 10:35:33 -070024 PrivateVolume.cpp \
Jeff Sharkeydeb24052015-03-02 21:01:40 -080025 EmulatedVolume.cpp \
26 Utils.cpp \
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070027 MoveTask.cpp \
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070028 Benchmark.cpp \
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070029 TrimTask.cpp \
Jeff Vander Stoepdf725752016-01-29 15:34:43 -080030 secontext.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070031
32common_c_includes := \
Ken Sumrall3ed82362011-01-28 23:31:16 -080033 system/extras/ext4_utils \
Daniel Rosenberge82df162014-08-15 22:19:23 +000034 system/extras/f2fs_utils \
Paul Lawrence87999172014-02-20 12:21:31 -080035 external/scrypt/lib/crypto \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070036 frameworks/native/include \
37 system/security/keystore \
38 hardware/libhardware/include/hardware \
39 system/security/softkeymaster/include/keymaster
Kenny Rootacc9e7d2010-06-18 19:06:50 -070040
41common_shared_libraries := \
42 libsysutils \
Paul Lawrence87999172014-02-20 12:21:31 -080043 libbinder \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070044 libcutils \
Ying Wang741a1692013-04-09 22:05:28 -070045 liblog \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070046 libdiskconfig \
Ken Sumrall5d4c68e2011-01-30 19:06:03 -080047 libhardware_legacy \
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080048 liblogwrap \
Ken Sumrall5cf759a2013-08-14 20:15:17 -070049 libext4_utils \
Daniel Rosenberge82df162014-08-15 22:19:23 +000050 libf2fs_sparseblock \
Mattias Nisslerdc803232016-03-31 16:32:59 +020051 libcrypto_utils \
Robert Craigb9e3ba52014-02-04 10:53:00 -050052 libcrypto \
Paul Lawrence87999172014-02-20 12:21:31 -080053 libselinux \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070054 libutils \
55 libhardware \
Dan Albertae9e8902015-03-16 10:35:17 -070056 libsoftkeymaster \
Paul Crowley75a52022015-05-06 15:04:43 +010057 libbase
Kenny Rootacc9e7d2010-06-18 19:06:50 -070058
Kenny Rootc4c70f12013-06-14 12:11:38 -070059common_static_libraries := \
60 libfs_mgr \
Sami Tolvanenefe67cd2015-06-01 15:38:29 +010061 libfec \
62 libfec_rs \
Mohamad Ayyashc489d7f2015-04-06 18:15:53 -070063 libsquashfs_utils \
Geremy Condrac49f0f22013-08-07 13:12:41 -070064 libscrypt_static \
Paul Lawrence87999172014-02-20 12:21:31 -080065 libbatteryservice
Kenny Rootc4c70f12013-06-14 12:11:38 -070066
Dan Albertc07fa3f2014-12-18 10:00:55 -080067vold_conlyflags := -std=c11
Jeff Sharkeydeb24052015-03-02 21:01:40 -080068vold_cflags := -Werror -Wall -Wno-missing-field-initializers -Wno-unused-variable -Wno-unused-parameter
Dan Albertc07fa3f2014-12-18 10:00:55 -080069
San Mehatf1b736b2009-10-10 17:22:08 -070070include $(CLEAR_VARS)
71
Dan Albertb2aaf3a2014-09-12 10:48:12 -070072LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Kenny Rootacc9e7d2010-06-18 19:06:50 -070073LOCAL_MODULE := libvold
Dan Albertc07fa3f2014-12-18 10:00:55 -080074LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -070075LOCAL_SRC_FILES := $(common_src_files)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070076LOCAL_C_INCLUDES := $(common_c_includes)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070077LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -070078LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070079LOCAL_MODULE_TAGS := eng tests
Dan Albertc07fa3f2014-12-18 10:00:55 -080080LOCAL_CFLAGS := $(vold_cflags)
81LOCAL_CONLYFLAGS := $(vold_conlyflags)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070082
83include $(BUILD_STATIC_LIBRARY)
84
85include $(CLEAR_VARS)
San Mehatf1b736b2009-10-10 17:22:08 -070086
Dan Albertb2aaf3a2014-09-12 10:48:12 -070087LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
San Mehatf1b736b2009-10-10 17:22:08 -070088LOCAL_MODULE:= vold
Dan Albertc07fa3f2014-12-18 10:00:55 -080089LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -070090LOCAL_SRC_FILES := \
91 main.cpp \
92 $(common_src_files)
93
Tom Cherrya2859842015-08-14 13:06:45 -070094LOCAL_INIT_RC := vold.rc
95
Kenny Rootacc9e7d2010-06-18 19:06:50 -070096LOCAL_C_INCLUDES := $(common_c_includes)
Dan Albertc07fa3f2014-12-18 10:00:55 -080097LOCAL_CFLAGS := $(vold_cflags)
98LOCAL_CONLYFLAGS := $(vold_conlyflags)
San Mehatf1b736b2009-10-10 17:22:08 -070099
Ajay Dudani87701e22014-09-17 21:02:52 -0700100ifeq ($(TARGET_HW_DISK_ENCRYPTION),true)
101LOCAL_C_INCLUDES += $(TARGET_CRYPTFS_HW_PATH)
102common_shared_libraries += libcryptfs_hw
103LOCAL_CFLAGS += -DCONFIG_HW_DISK_ENCRYPTION
104endif
105
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700106LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -0700107LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Ken Sumrallf0679f02012-04-01 23:58:44 -0700108
San Mehatf1b736b2009-10-10 17:22:08 -0700109include $(BUILD_EXECUTABLE)
110
111include $(CLEAR_VARS)
Kenny Root7b18a7b2010-03-15 13:13:41 -0700112
Dan Albertb2aaf3a2014-09-12 10:48:12 -0700113LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Dan Albertc07fa3f2014-12-18 10:00:55 -0800114LOCAL_CLANG := true
Paul Crowleyfde9cd82015-05-06 11:27:44 +0100115LOCAL_SRC_FILES:= vdc.cpp
San Mehatf1b736b2009-10-10 17:22:08 -0700116LOCAL_MODULE:= vdc
San Mehatf1b736b2009-10-10 17:22:08 -0700117LOCAL_SHARED_LIBRARIES := libcutils
Dan Albertc07fa3f2014-12-18 10:00:55 -0800118LOCAL_CFLAGS := $(vold_cflags)
119LOCAL_CONLYFLAGS := $(vold_conlyflags)
Tom Cherrya2859842015-08-14 13:06:45 -0700120LOCAL_INIT_RC := vdc.rc
San Mehatf1b736b2009-10-10 17:22:08 -0700121
122include $(BUILD_EXECUTABLE)
Paul Crowley5bd0daf2015-05-19 17:31:39 +0100123
124include $(CLEAR_VARS)
125
126LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
127LOCAL_CLANG := true
128LOCAL_SRC_FILES:= secdiscard.cpp
129LOCAL_MODULE:= secdiscard
Dimitry Ivanov01f86a52016-02-12 16:10:22 -0800130LOCAL_SHARED_LIBRARIES := liblog libcutils
Paul Crowley5bd0daf2015-05-19 17:31:39 +0100131LOCAL_CFLAGS := $(vold_cflags)
132LOCAL_CONLYFLAGS := $(vold_conlyflags)
133
134include $(BUILD_EXECUTABLE)