Home | History | Annotate | Download | only in input
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 # HID plugin
      4 
      5 include $(CLEAR_VARS)
      6 
      7 LOCAL_SRC_FILES:= \
      8 	device.c \
      9 	fakehid.c \
     10 	main.c \
     11 	manager.c \
     12 	server.c
     13 
     14 LOCAL_CFLAGS:= \
     15 	-DVERSION=\"4.69\" \
     16 	-DSTORAGEDIR=\"/data/misc/bluetoothd\" \
     17 	-DCONFIGDIR=\"/etc/bluetooth\"
     18 
     19 LOCAL_C_INCLUDES:= \
     20 	$(LOCAL_PATH)/../lib \
     21 	$(LOCAL_PATH)/../src \
     22 	$(LOCAL_PATH)/../gdbus \
     23 	$(call include-path-for, glib) \
     24 	$(call include-path-for, dbus)
     25 
     26 LOCAL_SHARED_LIBRARIES := \
     27 	libbluetoothd \
     28 	libbluetooth \
     29 	libdbus \
     30 	libexpat \
     31 	libcutils
     32 
     33 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/bluez-plugin
     34 LOCAL_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/bluez-plugin
     35 LOCAL_MODULE := input
     36 
     37 include $(BUILD_SHARED_LIBRARY)
     38