blob: be67779580acb51fa5c36cd5d013b7d463b6da17 [file] [log] [blame]
Connor O'Brien74f82922016-10-10 12:31:37 -07001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.boot@1.0-impl
5LOCAL_MODULE_RELATIVE_PATH := hw
6LOCAL_SRC_FILES := \
7 BootControl.cpp \
8
9LOCAL_SHARED_LIBRARIES := \
10 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080011 libhidlbase \
12 libhidltransport \
Connor O'Brien74f82922016-10-10 12:31:37 -070013 libhwbinder \
14 libhardware \
15 libutils \
16 android.hardware.boot@1.0 \
17
18include $(BUILD_SHARED_LIBRARY)
Connor O'Brienb597c872016-10-10 14:41:35 -070019
20include $(CLEAR_VARS)
21LOCAL_MODULE_RELATIVE_PATH := hw
22LOCAL_MODULE := android.hardware.boot@1.0-service
23LOCAL_INIT_RC := android.hardware.boot@1.0-service.rc
24LOCAL_SRC_FILES := \
25 service.cpp
26
27LOCAL_SHARED_LIBRARIES := \
28 liblog \
29 libhwbinder \
30 libhardware \
Yifan Hong6b920e42016-11-16 14:17:58 -080031 libhidlbase \
32 libhidltransport \
Connor O'Brienb597c872016-10-10 14:41:35 -070033 libutils \
34 android.hardware.boot@1.0 \
35
36include $(BUILD_EXECUTABLE)