summaryrefslogtreecommitdiffstats
path: root/libril/Android.mk
diff options
context:
space:
mode:
authorDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-07-06 13:33:40 +0200
committerDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-07-07 10:15:27 +0200
commit398efa43f5e60cb237c57c45a0170b4c9e76183a (patch)
tree911dca6f99c1a7720f8cfe0d866c9a0cdf278892 /libril/Android.mk
parent96000dbbfb24df181b87e284ae27a8eea8d40fb8 (diff)
downloaddevice_samsung_i9300-398efa43f5e60cb237c57c45a0170b4c9e76183a.zip
device_samsung_i9300-398efa43f5e60cb237c57c45a0170b4c9e76183a.tar.gz
device_samsung_i9300-398efa43f5e60cb237c57c45a0170b4c9e76183a.tar.bz2
i9300: move libril, use SamsungExynos4RIL class
Change-Id: Idf5a983d659d239ba3324cbd8c9e0be9f4ee3dd3
Diffstat (limited to 'libril/Android.mk')
-rw-r--r--libril/Android.mk47
1 files changed, 0 insertions, 47 deletions
diff --git a/libril/Android.mk b/libril/Android.mk
deleted file mode 100644
index 7a1131b..0000000
--- a/libril/Android.mk
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2006 The Android Open Source Project
-
-ifeq ($(BOARD_PROVIDES_LIBRIL),true)
-
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
- ril.cpp \
- ril_event.cpp
-
-LOCAL_SHARED_LIBRARIES := \
- libutils \
- libbinder \
- libcutils \
- libhardware_legacy
-
-LOCAL_CFLAGS :=
-
-LOCAL_MODULE:= libril
-
-LOCAL_LDLIBS += -lpthread
-
-include $(BUILD_SHARED_LIBRARY)
-
-
-# For RdoServD which needs a static library
-# =========================================
-ifneq ($(ANDROID_BIONIC_TRANSITION),)
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
- ril.cpp
-
-LOCAL_STATIC_LIBRARIES := \
- libutils_static \
- libcutils
-
-LOCAL_CFLAGS :=
-
-LOCAL_MODULE:= libril_static
-
-LOCAL_LDLIBS += -lpthread
-
-include $(BUILD_STATIC_LIBRARY)
-endif # ANDROID_BIONIC_TRANSITION
-endif # BOARD_PROVIDES_LIBRIL