blob: 5de3451fbdf3c71263d9e95efa06f8e09ed941b2 [file] [log] [blame]
Jiyong Park200825e2017-01-14 19:40:33 +09001LOCAL_PATH := $(call my-dir)
2
3################################################################################
4include $(CLEAR_VARS)
5LOCAL_MODULE := android.hardware.configstore@1.0-impl
6LOCAL_MODULE_CLASS := SHARED_LIBRARIES
7LOCAL_MODULE_RELATIVE_PATH := hw
8
9include $(LOCAL_PATH)/surfaceflinger.mk
10
11LOCAL_SHARED_LIBRARIES := \
12 libbase \
13 libhidlbase \
14 libhidltransport \
15 libhwbinder \
16 libutils \
17 android.hardware.configstore@1.0 \
18 android.hidl.base@1.0
19
20include $(BUILD_SHARED_LIBRARY)
21
22################################################################################
23include $(CLEAR_VARS)
24LOCAL_MODULE := android.hardware.configstore@1.0-service
25LOCAL_MODULE_CLASS := EXECUTABLES
26LOCAL_MODULE_RELATIVE_PATH := hw
27LOCAL_INIT_RC := android.hardware.configstore@1.0-service.rc
28LOCAL_SRC_FILES:= service.cpp
29
30LOCAL_SHARED_LIBRARIES := \
31 liblog \
32 libdl \
33 libutils \
34 libhidlbase \
35 libhidltransport \
36 libhwbinder \
37 android.hardware.configstore@1.0 \
38
39include $(BUILD_EXECUTABLE)
40