San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||||
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 3 | common_src_files := \ |
4 | VolumeManager.cpp \ | ||||
5 | CommandListener.cpp \ | ||||
Paul Lawrence | d0b4295 | 2015-06-03 14:19:51 -0700 | [diff] [blame] | 6 | CryptCommandListener.cpp \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 7 | VoldCommand.cpp \ |
8 | NetlinkManager.cpp \ | ||||
9 | NetlinkHandler.cpp \ | ||||
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 10 | Process.cpp \ |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 11 | fs/Ext4.cpp \ |
12 | fs/F2fs.cpp \ | ||||
13 | fs/Vfat.cpp \ | ||||
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 14 | Loop.cpp \ |
15 | Devmapper.cpp \ | ||||
16 | ResponseCode.cpp \ | ||||
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 17 | CheckBattery.cpp \ |
Paul Lawrence | 707fd6c | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 18 | Ext4Crypt.cpp \ |
Ken Sumrall | 9caab76 | 2013-06-11 19:10:20 -0700 | [diff] [blame] | 19 | VoldUtil.c \ |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 20 | cryptfs.c \ |
21 | Disk.cpp \ | ||||
22 | VolumeBase.cpp \ | ||||
23 | PublicVolume.cpp \ | ||||
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 24 | PrivateVolume.cpp \ |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 25 | EmulatedVolume.cpp \ |
26 | Utils.cpp \ | ||||
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 27 | MoveTask.cpp \ |
Jeff Sharkey | 5a6bfca | 2015-05-14 20:33:55 -0700 | [diff] [blame] | 28 | Benchmark.cpp \ |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 29 | TrimTask.cpp \ |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 30 | Keymaster.cpp \ |
31 | KeyStorage.cpp \ | ||||
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 32 | ScryptParameters.cpp \ |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 33 | secontext.cpp \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 34 | |
35 | common_c_includes := \ | ||||
Daniel Rosenberg | e82df16 | 2014-08-15 22:19:23 +0000 | [diff] [blame] | 36 | system/extras/f2fs_utils \ |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 37 | external/scrypt/lib/crypto \ |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 38 | frameworks/native/include \ |
39 | system/security/keystore \ | ||||
40 | hardware/libhardware/include/hardware \ | ||||
41 | system/security/softkeymaster/include/keymaster | ||||
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 42 | |
43 | common_shared_libraries := \ | ||||
44 | libsysutils \ | ||||
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 45 | libbinder \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 46 | libcutils \ |
Ying Wang | 741a169 | 2013-04-09 22:05:28 -0700 | [diff] [blame] | 47 | liblog \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 48 | libdiskconfig \ |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 49 | libhardware_legacy \ |
Rom Lemarchand | 2ba45aa | 2013-01-16 12:29:28 -0800 | [diff] [blame] | 50 | liblogwrap \ |
Ken Sumrall | 5cf759a | 2013-08-14 20:15:17 -0700 | [diff] [blame] | 51 | libext4_utils \ |
Daniel Rosenberg | e82df16 | 2014-08-15 22:19:23 +0000 | [diff] [blame] | 52 | libf2fs_sparseblock \ |
Mattias Nissler | dc80323 | 2016-03-31 16:32:59 +0200 | [diff] [blame] | 53 | libcrypto_utils \ |
Robert Craig | b9e3ba5 | 2014-02-04 10:53:00 -0500 | [diff] [blame] | 54 | libcrypto \ |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 55 | libselinux \ |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 56 | libutils \ |
57 | libhardware \ | ||||
Dan Albert | ae9e890 | 2015-03-16 10:35:17 -0700 | [diff] [blame] | 58 | libsoftkeymaster \ |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 59 | libbase \ |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 60 | libkeymaster_messages \ |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 61 | |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 62 | common_static_libraries := \ |
Yabin Cui | 889ed48 | 2016-06-24 14:48:49 -0700 | [diff] [blame] | 63 | libbootloader_message \ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 64 | libfs_mgr \ |
Sami Tolvanen | efe67cd | 2015-06-01 15:38:29 +0100 | [diff] [blame] | 65 | libfec \ |
66 | libfec_rs \ | ||||
Mohamad Ayyash | c489d7f | 2015-04-06 18:15:53 -0700 | [diff] [blame] | 67 | libsquashfs_utils \ |
Geremy Condra | c49f0f2 | 2013-08-07 13:12:41 -0700 | [diff] [blame] | 68 | libscrypt_static \ |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 69 | libbatteryservice \ |
bowgotsai | 58bdac8 | 2017-01-07 00:44:35 +0800 | [diff] [blame] | 70 | libavb \ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 71 | |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 72 | vold_conlyflags := -std=c11 |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 73 | vold_cflags := -Werror -Wall -Wno-missing-field-initializers -Wno-unused-variable -Wno-unused-parameter |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 74 | |
Adrien Schildknecht | e0f409c | 2016-11-21 15:14:37 -0800 | [diff] [blame] | 75 | required_modules := |
76 | ifeq ($(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 | ||||
83 | endif | ||||
84 | |||||
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 85 | include $(CLEAR_VARS) |
86 | |||||
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 87 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 88 | LOCAL_MODULE := libvold |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 89 | LOCAL_CLANG := true |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 90 | LOCAL_SRC_FILES := $(common_src_files) |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 91 | LOCAL_C_INCLUDES := $(common_c_includes) |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 92 | LOCAL_SHARED_LIBRARIES := $(common_shared_libraries) |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 93 | LOCAL_STATIC_LIBRARIES := $(common_static_libraries) |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 94 | LOCAL_MODULE_TAGS := eng tests |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 95 | LOCAL_CFLAGS := $(vold_cflags) |
96 | LOCAL_CONLYFLAGS := $(vold_conlyflags) | ||||
Adrien Schildknecht | e0f409c | 2016-11-21 15:14:37 -0800 | [diff] [blame] | 97 | LOCAL_REQUIRED_MODULES := $(required_modules) |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 98 | |
99 | include $(BUILD_STATIC_LIBRARY) | ||||
100 | |||||
101 | include $(CLEAR_VARS) | ||||
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 102 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 103 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 104 | LOCAL_MODULE := vold |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 105 | LOCAL_CLANG := true |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 106 | LOCAL_SRC_FILES := \ |
107 | main.cpp \ | ||||
108 | $(common_src_files) | ||||
109 | |||||
Tom Cherry | a285984 | 2015-08-14 13:06:45 -0700 | [diff] [blame] | 110 | LOCAL_INIT_RC := vold.rc |
111 | |||||
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 112 | LOCAL_C_INCLUDES := $(common_c_includes) |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 113 | LOCAL_CFLAGS := $(vold_cflags) |
114 | LOCAL_CONLYFLAGS := $(vold_conlyflags) | ||||
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 115 | |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 116 | LOCAL_SHARED_LIBRARIES := $(common_shared_libraries) |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 117 | LOCAL_STATIC_LIBRARIES := $(common_static_libraries) |
Adrien Schildknecht | e0f409c | 2016-11-21 15:14:37 -0800 | [diff] [blame] | 118 | LOCAL_REQUIRED_MODULES := $(required_modules) |
Ken Sumrall | f0679f0 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 119 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 120 | include $(BUILD_EXECUTABLE) |
121 | |||||
122 | include $(CLEAR_VARS) | ||||
Kenny Root | 7b18a7b | 2010-03-15 13:13:41 -0700 | [diff] [blame] | 123 | |
Dan Albert | b2aaf3a | 2014-09-12 10:48:12 -0700 | [diff] [blame] | 124 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 125 | LOCAL_CLANG := true |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 126 | LOCAL_SRC_FILES := vdc.cpp |
127 | LOCAL_MODULE := vdc | ||||
128 | LOCAL_SHARED_LIBRARIES := libcutils libbase | ||||
Dan Albert | c07fa3f | 2014-12-18 10:00:55 -0800 | [diff] [blame] | 129 | LOCAL_CFLAGS := $(vold_cflags) |
130 | LOCAL_CONLYFLAGS := $(vold_conlyflags) | ||||
Tom Cherry | a285984 | 2015-08-14 13:06:45 -0700 | [diff] [blame] | 131 | LOCAL_INIT_RC := vdc.rc |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 132 | |
133 | include $(BUILD_EXECUTABLE) | ||||
Paul Crowley | 5bd0daf | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 134 | |
135 | include $(CLEAR_VARS) | ||||
136 | |||||
137 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk | ||||
138 | LOCAL_CLANG := true | ||||
139 | LOCAL_SRC_FILES:= secdiscard.cpp | ||||
140 | LOCAL_MODULE:= secdiscard | ||||
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 141 | LOCAL_SHARED_LIBRARIES := libbase |
Paul Crowley | 5bd0daf | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 142 | LOCAL_CFLAGS := $(vold_cflags) |
143 | LOCAL_CONLYFLAGS := $(vold_conlyflags) | ||||
144 | |||||
145 | include $(BUILD_EXECUTABLE) |