61 lines
1.2 KiB
Makefile
61 lines
1.2 KiB
Makefile
# Copyright 2006 The Android Open Source Project
|
|
|
|
ifneq ($(BOARD_PROVIDES_LIBRIL),true)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
ril.cpp \
|
|
ril_event.cpp\
|
|
RilSocket.cpp \
|
|
RilSapSocket.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog \
|
|
libutils \
|
|
libbinder \
|
|
libcutils \
|
|
libhardware_legacy \
|
|
librilutils \
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libprotobuf-c-nano-enable_malloc \
|
|
|
|
ifeq ($(SIM_COUNT), 2)
|
|
LOCAL_CFLAGS := -DANDROID_MULTI_SIM
|
|
LOCAL_CFLAGS += -DANDROID_SIM_COUNT_2
|
|
endif
|
|
|
|
LOCAL_C_INCLUDES += external/nanopb-c
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/../include
|
|
|
|
LOCAL_MODULE:= libril
|
|
LOCAL_CLANG := true
|
|
LOCAL_SANITIZE := integer
|
|
|
|
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 \
|
|
librilutils_static \
|
|
libprotobuf-c-nano-enable_malloc
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_MODULE:= libril_static
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
endif # ANDROID_BIONIC_TRANSITION
|
|
endif # BOARD_PROVIDES_LIBRIL
|