blob: d183a1784af8dd1e12fb58861648f2615962ea64 [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 \
Paul Crowley1ef25582016-01-21 20:26:12 +000030 Keymaster.cpp \
31 KeyStorage.cpp \
Paul Crowley63c18d32016-02-10 14:02:47 +000032 ScryptParameters.cpp \
Jeff Vander Stoepdf725752016-01-29 15:34:43 -080033 secontext.cpp \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070034
35common_c_includes := \
Daniel Rosenberge82df162014-08-15 22:19:23 +000036 system/extras/f2fs_utils \
Paul Lawrence87999172014-02-20 12:21:31 -080037 external/scrypt/lib/crypto \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070038 frameworks/native/include \
39 system/security/keystore \
40 hardware/libhardware/include/hardware \
41 system/security/softkeymaster/include/keymaster
Kenny Rootacc9e7d2010-06-18 19:06:50 -070042
43common_shared_libraries := \
44 libsysutils \
Paul Lawrence87999172014-02-20 12:21:31 -080045 libbinder \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070046 libcutils \
Ying Wang741a1692013-04-09 22:05:28 -070047 liblog \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070048 libdiskconfig \
Ken Sumrall5d4c68e2011-01-30 19:06:03 -080049 libhardware_legacy \
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080050 liblogwrap \
Ken Sumrall5cf759a2013-08-14 20:15:17 -070051 libext4_utils \
Daniel Rosenberge82df162014-08-15 22:19:23 +000052 libf2fs_sparseblock \
Mattias Nisslerdc803232016-03-31 16:32:59 +020053 libcrypto_utils \
Robert Craigb9e3ba52014-02-04 10:53:00 -050054 libcrypto \
Paul Lawrence87999172014-02-20 12:21:31 -080055 libselinux \
Paul Lawrence69f4ebd2014-04-14 12:17:14 -070056 libutils \
57 libhardware \
Dan Albertae9e8902015-03-16 10:35:17 -070058 libsoftkeymaster \
Paul Crowley1ef25582016-01-21 20:26:12 +000059 libbase \
Paul Crowley1ef25582016-01-21 20:26:12 +000060 libkeymaster_messages \
Kenny Rootacc9e7d2010-06-18 19:06:50 -070061
Kenny Rootc4c70f12013-06-14 12:11:38 -070062common_static_libraries := \
Yabin Cui889ed482016-06-24 14:48:49 -070063 libbootloader_message \
Kenny Rootc4c70f12013-06-14 12:11:38 -070064 libfs_mgr \
Sami Tolvanenefe67cd2015-06-01 15:38:29 +010065 libfec \
66 libfec_rs \
Mohamad Ayyashc489d7f2015-04-06 18:15:53 -070067 libsquashfs_utils \
Geremy Condrac49f0f22013-08-07 13:12:41 -070068 libscrypt_static \
Paul Crowley1ef25582016-01-21 20:26:12 +000069 libbatteryservice \
bowgotsai58bdac82017-01-07 00:44:35 +080070 libavb \
Kenny Rootc4c70f12013-06-14 12:11:38 -070071
Dan Albertc07fa3f2014-12-18 10:00:55 -080072vold_conlyflags := -std=c11
Jeff Sharkeydeb24052015-03-02 21:01:40 -080073vold_cflags := -Werror -Wall -Wno-missing-field-initializers -Wno-unused-variable -Wno-unused-parameter
Dan Albertc07fa3f2014-12-18 10:00:55 -080074
Adrien Schildknechte0f409c2016-11-21 15:14:37 -080075required_modules :=
76ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
77 ifeq ($(TARGET_USES_MKE2FS), true)
78 vold_cflags += -DTARGET_USES_MKE2FS
79 required_modules += mke2fs
80 else
81 required_modules += make_ext4fs
82 endif
83endif
84
San Mehatf1b736b2009-10-10 17:22:08 -070085include $(CLEAR_VARS)
86
Dan Albertb2aaf3a2014-09-12 10:48:12 -070087LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Kenny Rootacc9e7d2010-06-18 19:06:50 -070088LOCAL_MODULE := libvold
Dan Albertc07fa3f2014-12-18 10:00:55 -080089LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -070090LOCAL_SRC_FILES := $(common_src_files)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070091LOCAL_C_INCLUDES := $(common_c_includes)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070092LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -070093LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070094LOCAL_MODULE_TAGS := eng tests
Dan Albertc07fa3f2014-12-18 10:00:55 -080095LOCAL_CFLAGS := $(vold_cflags)
96LOCAL_CONLYFLAGS := $(vold_conlyflags)
Adrien Schildknechte0f409c2016-11-21 15:14:37 -080097LOCAL_REQUIRED_MODULES := $(required_modules)
Kenny Rootacc9e7d2010-06-18 19:06:50 -070098
99include $(BUILD_STATIC_LIBRARY)
100
101include $(CLEAR_VARS)
San Mehatf1b736b2009-10-10 17:22:08 -0700102
Dan Albertb2aaf3a2014-09-12 10:48:12 -0700103LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Jeff Sharkey47695b22016-02-01 17:02:29 -0700104LOCAL_MODULE := vold
Dan Albertc07fa3f2014-12-18 10:00:55 -0800105LOCAL_CLANG := true
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700106LOCAL_SRC_FILES := \
107 main.cpp \
108 $(common_src_files)
109
Tom Cherrya2859842015-08-14 13:06:45 -0700110LOCAL_INIT_RC := vold.rc
111
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700112LOCAL_C_INCLUDES := $(common_c_includes)
Dan Albertc07fa3f2014-12-18 10:00:55 -0800113LOCAL_CFLAGS := $(vold_cflags)
114LOCAL_CONLYFLAGS := $(vold_conlyflags)
San Mehatf1b736b2009-10-10 17:22:08 -0700115
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700116LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
Kenny Rootc4c70f12013-06-14 12:11:38 -0700117LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
Adrien Schildknechte0f409c2016-11-21 15:14:37 -0800118LOCAL_REQUIRED_MODULES := $(required_modules)
Ken Sumrallf0679f02012-04-01 23:58:44 -0700119
San Mehatf1b736b2009-10-10 17:22:08 -0700120include $(BUILD_EXECUTABLE)
121
122include $(CLEAR_VARS)
Kenny Root7b18a7b2010-03-15 13:13:41 -0700123
Dan Albertb2aaf3a2014-09-12 10:48:12 -0700124LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Dan Albertc07fa3f2014-12-18 10:00:55 -0800125LOCAL_CLANG := true
Jeff Sharkey47695b22016-02-01 17:02:29 -0700126LOCAL_SRC_FILES := vdc.cpp
127LOCAL_MODULE := vdc
128LOCAL_SHARED_LIBRARIES := libcutils libbase
Dan Albertc07fa3f2014-12-18 10:00:55 -0800129LOCAL_CFLAGS := $(vold_cflags)
130LOCAL_CONLYFLAGS := $(vold_conlyflags)
Tom Cherrya2859842015-08-14 13:06:45 -0700131LOCAL_INIT_RC := vdc.rc
San Mehatf1b736b2009-10-10 17:22:08 -0700132
133include $(BUILD_EXECUTABLE)
Paul Crowley5bd0daf2015-05-19 17:31:39 +0100134
135include $(CLEAR_VARS)
136
137LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
138LOCAL_CLANG := true
139LOCAL_SRC_FILES:= secdiscard.cpp
140LOCAL_MODULE:= secdiscard
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000141LOCAL_SHARED_LIBRARIES := libbase
Paul Crowley5bd0daf2015-05-19 17:31:39 +0100142LOCAL_CFLAGS := $(vold_cflags)
143LOCAL_CONLYFLAGS := $(vold_conlyflags)
144
145include $(BUILD_EXECUTABLE)