summaryrefslogtreecommitdiffstats
path: root/ril/libsecril-shim/Android.mk
diff options
context:
space:
mode:
authorKyle Repinski <repinski23@gmail.com>2015-11-29 08:43:49 -0600
committerZiyan <jaraidaniel@gmail.com>2016-03-11 01:16:56 +0100
commit2c3878ca3c8a2c770fff93afc96141ab058801b8 (patch)
treedbfdfa040bcdf77ae3991080703b5dce46c0a47d /ril/libsecril-shim/Android.mk
parent6fdcc9c8798d3fc3e07860854730d3c935f7a067 (diff)
downloaddevice_samsung_tuna-2c3878ca3c8a2c770fff93afc96141ab058801b8.zip
device_samsung_tuna-2c3878ca3c8a2c770fff93afc96141ab058801b8.tar.gz
device_samsung_tuna-2c3878ca3c8a2c770fff93afc96141ab058801b8.tar.bz2
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
Diffstat (limited to 'ril/libsecril-shim/Android.mk')
-rw-r--r--ril/libsecril-shim/Android.mk18
1 files changed, 18 insertions, 0 deletions
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)