summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNingyuan Wang2016-06-02 17:33:10 -0500
committerNingyuan Wang2016-06-02 19:04:53 -0500
commitfa9619e3efeb8afab8be0a71f77cda26261622cb (patch)
tree996c8cff5ce598d89f58407da74aff665be62125 /Android.mk
parent56e046f9e92018c81ca42b77ba37bdba920033e4 (diff)
downloadsystem-connectivity-wificond-fa9619e3efeb8afab8be0a71f77cda26261622cb.tar.gz
system-connectivity-wificond-fa9619e3efeb8afab8be0a71f77cda26261622cb.tar.xz
system-connectivity-wificond-fa9619e3efeb8afab8be0a71f77cda26261622cb.zip
Binder interface skeleten of wificond
This CL adds a dummy binder interface of wificond. There is only one function called Ping() which is supposed to return a std string "Pong". BUG=28867093 TEST=compile TEST=Mannually modify wificond sepolicy file to allow binder operations. Use an executable to test this interface by calling Ping() through binder and verifying the response is "Pong". Change-Id: I8b5b1b65811f018612ad095f692d8acf2289c3c9
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 99e5668..6b5f7da 100644
--- a/Android.mk
+++ b/Android.mk
@@ -24,9 +24,13 @@ include $(CLEAR_VARS)
24LOCAL_MODULE := wificond 24LOCAL_MODULE := wificond
25LOCAL_CPPFLAGS := $(wificond_cpp_flags) 25LOCAL_CPPFLAGS := $(wificond_cpp_flags)
26LOCAL_INIT_RC := wificond.rc 26LOCAL_INIT_RC := wificond.rc
27LOCAL_AIDL_INCLUDES += $(LOCAL_PATH)/aidl
27LOCAL_SRC_FILES := \ 28LOCAL_SRC_FILES := \
28 main.cpp 29 main.cpp \
30 aidl/android/wificond/IServer.aidl \
31 server.cpp
29LOCAL_SHARED_LIBRARIES := \ 32LOCAL_SHARED_LIBRARIES := \
33 libbinder \
30 libbase \ 34 libbase \
31 libutils 35 libutils
32LOCAL_STATIC_LIBRARIES := \ 36LOCAL_STATIC_LIBRARIES := \