Daniel Hillenbrand | 601dc85 | 2013-07-07 10:06:59 +0200 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2013 The Android Open-Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
Daniel Hillenbrand | 41f25f4 | 2013-07-11 16:26:34 +0200 | [diff] [blame] | 17 | RIL_PATH := $(call my-dir) |
Daniel Hillenbrand | 601dc85 | 2013-07-07 10:06:59 +0200 | [diff] [blame] | 18 | |
| 19 | ifeq ($(BOARD_VENDOR),samsung) |
Daniel Hillenbrand | 601dc85 | 2013-07-07 10:06:59 +0200 | [diff] [blame] | 20 | |
Daniel Hillenbrand | c0e536a | 2013-07-08 17:11:45 +0200 | [diff] [blame] | 21 | # libril |
| 22 | ifeq ($(BOARD_PROVIDES_LIBRIL),true) |
Christopher N. Hesse | fb599ed | 2016-04-15 18:38:35 +0200 | [diff] [blame] | 23 | ifneq ($(filter m7450 mdm9x35 ss333 tss310 xmm6260 xmm6262 xmm6360 xmm7260,$(BOARD_MODEM_TYPE)),) |
Howard Su | e32dbfd | 2015-01-07 15:55:57 +0800 | [diff] [blame] | 24 | include $(RIL_PATH)/libril/Android.mk |
Daniel Hillenbrand | 601dc85 | 2013-07-07 10:06:59 +0200 | [diff] [blame] | 25 | endif |
K Yasu | eeb7df7 | 2015-04-07 22:10:03 +0900 | [diff] [blame] | 26 | endif |
Daniel Hillenbrand | c0e536a | 2013-07-08 17:11:45 +0200 | [diff] [blame] | 27 | |
| 28 | # ril client |
Daniel Hillenbrand | 41f25f4 | 2013-07-11 16:26:34 +0200 | [diff] [blame] | 29 | SECRIL_CLIENT_DIRS := libsecril-client libsecril-client-sap |
| 30 | include $(foreach client_dirs,$(SECRIL_CLIENT_DIRS),$(RIL_PATH)/$(client_dirs)/Android.mk) |
Daniel Hillenbrand | c0e536a | 2013-07-08 17:11:45 +0200 | [diff] [blame] | 31 | |
Daniel Hillenbrand | 601dc85 | 2013-07-07 10:06:59 +0200 | [diff] [blame] | 32 | endif |
| 33 | |