2012-05-21 08:47:01 +00:00
|
|
|
# Copyright (C) 2012 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2012-10-04 02:52:52 +00:00
|
|
|
SAM_ROOT := $(call my-dir)
|
|
|
|
|
2013-07-07 08:06:59 +00:00
|
|
|
# Exynos 4
|
2012-05-21 08:47:01 +00:00
|
|
|
ifeq ($(TARGET_BOARD_PLATFORM),exynos4)
|
|
|
|
ifeq ($(TARGET_SOC),exynos4210)
|
2012-10-04 02:52:52 +00:00
|
|
|
include $(SAM_ROOT)/exynos4210.mk
|
2012-05-21 08:47:01 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_SOC),exynos4x12)
|
2012-10-04 02:52:52 +00:00
|
|
|
include $(SAM_ROOT)/exynos4x12.mk
|
2012-05-21 08:47:01 +00:00
|
|
|
endif
|
|
|
|
endif
|
2012-07-12 09:07:05 +00:00
|
|
|
|
2013-07-07 08:06:59 +00:00
|
|
|
# Exynos 3
|
2012-07-12 09:07:05 +00:00
|
|
|
ifeq ($(TARGET_BOARD_PLATFORM),s5pc110)
|
2012-10-04 02:52:52 +00:00
|
|
|
include $(SAM_ROOT)/s5pc110.mk
|
|
|
|
endif
|
|
|
|
|
2013-07-07 08:06:59 +00:00
|
|
|
# Wifi
|
2012-10-04 02:52:52 +00:00
|
|
|
ifeq ($(BOARD_HAVE_SAMSUNG_WIFI),true)
|
|
|
|
include $(SAM_ROOT)/macloader/Android.mk
|
2015-12-19 13:29:21 +00:00
|
|
|
include $(SAM_ROOT)/wifiloader/Android.mk
|
2012-07-12 09:07:05 +00:00
|
|
|
endif
|
2013-07-07 08:06:59 +00:00
|
|
|
|
2019-08-08 03:56:48 +00:00
|
|
|
# Loki
|
2019-08-11 20:46:48 +00:00
|
|
|
ifeq ($(strip $(TARGET_NEEDS_LOKI)),true)
|
2019-08-08 03:56:48 +00:00
|
|
|
include $(SAM_ROOT)/loki_tool/Android.mk
|
|
|
|
endif
|
|
|
|
|
2013-07-07 08:06:59 +00:00
|
|
|
ifeq ($(BOARD_VENDOR),samsung)
|
2019-04-27 14:14:06 +00:00
|
|
|
#include $(SAM_ROOT)/AdvancedDisplay/Android.mk
|
2017-01-28 11:40:45 +00:00
|
|
|
include $(SAM_ROOT)/audio/Android.mk
|
2016-03-15 01:31:38 +00:00
|
|
|
include $(SAM_ROOT)/consumerir/Android.mk
|
2017-01-04 00:17:53 +00:00
|
|
|
include $(SAM_ROOT)/dtbhtool/Android.mk
|
2017-02-05 13:18:09 +00:00
|
|
|
include $(SAM_ROOT)/fingerprint/Android.mk
|
2019-07-09 20:43:47 +00:00
|
|
|
include $(SAM_ROOT)/hidl/Android.mk
|
2016-01-26 11:17:55 +00:00
|
|
|
include $(SAM_ROOT)/liblights/Android.mk
|
2016-01-01 15:36:37 +00:00
|
|
|
include $(SAM_ROOT)/modemloader/Android.mk
|
2015-12-21 20:28:23 +00:00
|
|
|
include $(SAM_ROOT)/power/Android.mk
|
2016-01-04 10:52:28 +00:00
|
|
|
include $(SAM_ROOT)/ril/Android.mk
|
2016-01-01 15:36:37 +00:00
|
|
|
endif
|