From 2c3878ca3c8a2c770fff93afc96141ab058801b8 Mon Sep 17 00:00:00 2001 From: Kyle Repinski Date: Sun, 29 Nov 2015 08:43:49 -0600 Subject: ril: Add 'libsecril-shim'. This lib inserts itself in front of the real RIL and shims the onRequest function as a means of compatibility, bug fixing, and updating. Conflicts: system.prop Change-Id: I779a275276816a32b19d9666021662d9dc71029d --- ril/libsecril-shim/Android.mk | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ril/libsecril-shim/Android.mk (limited to 'ril/libsecril-shim/Android.mk') diff --git a/ril/libsecril-shim/Android.mk b/ril/libsecril-shim/Android.mk new file mode 100644 index 0000000..91519f2 --- /dev/null +++ b/ril/libsecril-shim/Android.mk @@ -0,0 +1,18 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_SRC_FILES := \ + secril-shim.c + +LOCAL_SHARED_LIBRARIES := \ + liblog \ + libril \ + libcutils + +LOCAL_CFLAGS := -Wall -Werror + +LOCAL_MODULE := libsecril-shim + +include $(BUILD_SHARED_LIBRARY) -- cgit v1.1