diff options
author | Ethan Chen <intervigil@gmail.com> | 2016-11-12 12:47:31 -0800 |
---|---|---|
committer | Zhao Wei Liew <zhaoweiliew@gmail.com> | 2017-01-04 06:03:24 +0000 |
commit | 750b0283defab06bab2edf405e1f9e0c8a35166e (patch) | |
tree | a259d05964afbfde5265821ef56af5ca0a8af34c | |
parent | a0300d400ace78f8045f17c24db33ce6d38dc072 (diff) | |
download | build-750b0283defab06bab2edf405e1f9e0c8a35166e.zip build-750b0283defab06bab2edf405e1f9e0c8a35166e.tar.gz build-750b0283defab06bab2edf405e1f9e0c8a35166e.tar.bz2 |
qcom_target: Remove unused support for CAF manifests
* This code was introduced to support building from Qualcomm hardware
manifests, placing the appropriate Qualcomm HALs at the AOSP
hardware/qcom/$(HAL_TYPE) location. This isn't a supported use case
anymore, so remove the dead code.
Change-Id: Id7d53b33f53289bc1ead8eb983d7e252940b0387
-rw-r--r-- | core/qcom_target.mk | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/qcom_target.mk b/core/qcom_target.mk index 9b8d6bb..9ce451b 100644 --- a/core/qcom_target.mk +++ b/core/qcom_target.mk @@ -75,21 +75,6 @@ ifeq ($(BOARD_USES_QCOM_HARDWARE),true) endif endif -# HACK: check to see if build uses standard QC HAL paths by checking for CM path structure -AOSP_VARIANT_MAKEFILE := $(wildcard hardware/qcom/audio/default/Android.mk) -ifeq ("$(AOSP_VARIANT_MAKEFILE)","") -$(call project-set-path,qcom-audio,hardware/qcom/audio) -$(call project-set-path,qcom-display,hardware/qcom/display) -$(call project-set-path,qcom-media,hardware/qcom/media) -$(call set-device-specific-path,CAMERA,camera,hardware/qcom/camera) -$(call set-device-specific-path,GPS,gps,hardware/qcom/gps) -$(call set-device-specific-path,SENSORS,sensors,hardware/qcom/sensors) -$(call set-device-specific-path,LOC_API,loc-api,vendor/qcom/opensource/location) -$(call set-device-specific-path,DATASERVICES,dataservices,vendor/qcom/opensource/dataservices) -$(call project-set-path,ril,hardware/ril) -$(call project-set-path,wlan,hardware/qcom/wlan) -$(call project-set-path,bt-vendor,hardware/qcom/bt) -else $(call project-set-path,qcom-audio,hardware/qcom/audio-caf/$(QCOM_HARDWARE_VARIANT)) $(call project-set-path,qcom-display,hardware/qcom/display-caf/$(QCOM_HARDWARE_VARIANT)) $(call project-set-path,qcom-media,hardware/qcom/media-caf/$(QCOM_HARDWARE_VARIANT)) @@ -103,7 +88,6 @@ $(call set-device-specific-path,DATASERVICES,dataservices,vendor/qcom/opensource $(call ril-set-path-variant,ril) $(call wlan-set-path-variant,wlan-caf) $(call bt-vendor-set-path-variant,bt-caf) -endif # AOSP_VARIANT_MAKEFILE else |