San Mehat | 11f78c1 | 2010-01-03 08:59:37 -0800 | [diff] [blame] | 1 | BUILD_VOLD2 := false |
| 2 | ifneq ($(TARGET_SIMULATOR),true) |
| 3 | BUILD_VOLD2 := true |
| 4 | endif |
| 5 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 6 | ifeq ($(BUILD_VOLD2),true) |
| 7 | |
| 8 | LOCAL_PATH:= $(call my-dir) |
| 9 | |
| 10 | include $(CLEAR_VARS) |
| 11 | |
| 12 | LOCAL_SRC_FILES:= \ |
| 13 | main.cpp \ |
| 14 | VolumeManager.cpp \ |
| 15 | CommandListener.cpp \ |
| 16 | VoldCommand.cpp \ |
| 17 | NetlinkManager.cpp \ |
| 18 | NetlinkHandler.cpp \ |
| 19 | BlockDevice.cpp \ |
| 20 | Volume.cpp \ |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 21 | DirectVolume.cpp \ |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 22 | logwrapper.c \ |
| 23 | ProcessKiller.c \ |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 24 | geom_mbr_enc.c \ |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 25 | Fat.cpp \ |
| 26 | Loop.cpp |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 27 | |
| 28 | LOCAL_MODULE:= vold |
| 29 | |
| 30 | LOCAL_C_INCLUDES := $(KERNEL_HEADERS) -I../../frameworks/base/include/ |
| 31 | |
| 32 | LOCAL_CFLAGS := |
| 33 | |
| 34 | LOCAL_SHARED_LIBRARIES := libsysutils |
| 35 | |
| 36 | include $(BUILD_EXECUTABLE) |
| 37 | |
| 38 | include $(CLEAR_VARS) |
| 39 | LOCAL_SRC_FILES:= \ |
| 40 | vdc.c \ |
| 41 | |
| 42 | LOCAL_MODULE:= vdc |
| 43 | |
| 44 | LOCAL_C_INCLUDES := $(KERNEL_HEADERS) |
| 45 | |
| 46 | LOCAL_CFLAGS := |
| 47 | |
| 48 | LOCAL_SHARED_LIBRARIES := libcutils |
| 49 | |
| 50 | include $(BUILD_EXECUTABLE) |
| 51 | |
| 52 | endif # ifeq ($(BUILD_VOLD,true) |