Skip to content
Snippets Groups Projects
Commit ead56148 authored by AUDITYA BHATTARAM's avatar AUDITYA BHATTARAM Committed by Gerrit - the friendly Code Review server
Browse files

Remove AOSP reference to utils.mk

Remove function calls from AOSP code to utils.mk
& replace them with actual definition.

Change-Id: I9262eefbb3ca75954a2e159696abc36c80df9c7b
CRs-fixed: 566287
parent 60ca6598
No related branches found
No related tags found
No related merge requests found
ifeq ($(call is-vendor-board-platform,QCOM),true) ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM)))
LOCAL_PATH:= $(call my-dir) LOCAL_PATH:= $(call my-dir)
LOCAL_DIR_PATH:= $(call my-dir) LOCAL_DIR_PATH:= $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
......
ifeq ($(call is-vendor-board-platform,QCOM),true) ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM)))
LOCAL_PATH:= $(call my-dir) LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
......
...@@ -10,7 +10,7 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src/com/codeaurora/fmradio) \ ...@@ -10,7 +10,7 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src/com/codeaurora/fmradio) \
src/com/codeaurora/fmradio/IFMTransmitterService.aidl \ src/com/codeaurora/fmradio/IFMTransmitterService.aidl \
ifeq ($(call is-platform-sdk-version-at-least,11),true) ifeq (1,$(filter 1,$(shell echo "$$(( $(PLATFORM_SDK_VERSION) >= 11 ))" )))
LOCAL_SRC_FILES += $(call all-java-files-under, src/com/codeaurora/hc_utils) LOCAL_SRC_FILES += $(call all-java-files-under, src/com/codeaurora/hc_utils)
else else
LOCAL_SRC_FILES += $(call all-java-files-under, src/com/codeaurora/utils) LOCAL_SRC_FILES += $(call all-java-files-under, src/com/codeaurora/utils)
......
...@@ -10,7 +10,7 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src/com/caf/fmradio) \ ...@@ -10,7 +10,7 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src/com/caf/fmradio) \
src/com/caf/fmradio/IFMTransmitterService.aidl \ src/com/caf/fmradio/IFMTransmitterService.aidl \
ifeq ($(call is-platform-sdk-version-at-least,11),true) ifeq (1,$(filter 1,$(shell echo "$$(( $(PLATFORM_SDK_VERSION) >= 11 ))" )))
LOCAL_SRC_FILES += $(call all-java-files-under, src/com/caf/hc_utils) LOCAL_SRC_FILES += $(call all-java-files-under, src/com/caf/hc_utils)
else else
LOCAL_SRC_FILES += $(call all-java-files-under, src/com/caf/utils) LOCAL_SRC_FILES += $(call all-java-files-under, src/com/caf/utils)
......
ifeq ($(call is-vendor-board-platform,QCOM),true) ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM)))
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment