1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE := android.hardware.light@2.0-impl 5LOCAL_PROPRIETARY_MODULE := true 6LOCAL_MODULE_RELATIVE_PATH := hw 7LOCAL_SRC_FILES := \ 8 Light.cpp \ 9 10LOCAL_SHARED_LIBRARIES := \ 11 libhidlbase \ 12 libhidltransport \ 13 libutils \ 14 liblog \ 15 libcutils \ 16 libhardware \ 17 libbase \ 18 libcutils \ 19 android.hardware.light@2.0 \ 20 21include $(BUILD_SHARED_LIBRARY) 22 23include $(CLEAR_VARS) 24LOCAL_MODULE_RELATIVE_PATH := hw 25LOCAL_PROPRIETARY_MODULE := true 26LOCAL_MODULE := android.hardware.light@2.0-service 27LOCAL_INIT_RC := android.hardware.light@2.0-service.rc 28LOCAL_SRC_FILES := \ 29 service.cpp \ 30 31LOCAL_SHARED_LIBRARIES := \ 32 liblog \ 33 libcutils \ 34 libdl \ 35 libbase \ 36 libutils \ 37 libhardware \ 38 39LOCAL_SHARED_LIBRARIES += \ 40 libhidlbase \ 41 libhidltransport \ 42 android.hardware.light@2.0 \ 43 44include $(BUILD_EXECUTABLE) 45