summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-05-31 17:22:16 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-05-31 17:22:16 -0700
commit532c3f7a28cf03cf26bd388911c6a427f3f00ab8 (patch)
tree96cca2d3a244892f9167aa4396069ea6fa2d3431
parentdba5dbfaf666aeeb1afea5a7f42795ffaf630421 (diff)
parentcf2985d914974095e7c0f37be1d60a2834a40736 (diff)
downloadbootctrl-532c3f7a28cf03cf26bd388911c6a427f3f00ab8.tar.gz
Remove Android.mk rules for building bootctrl. am: 7bde6868ff am: 308431ceb7
am: cf2985d914 Change-Id: I65b765e0c382f6c377a98e2b56703c94cf799c59
-rw-r--r--Android.mk30
1 files changed, 0 insertions, 30 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index e1794d5..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,30 +0,0 @@
-ifeq ($(strip $(TARGET_USES_HARDWARE_QCOM_BOOTCTRL)),true)
-# TODO: Find a better way to separate build configs for ADP vs non-ADP devices
-ifneq ($(BOARD_IS_AUTOMOTIVE),true)
-LOCAL_PATH := $(call my-dir)
-
-# HAL Shared library for the target. Used by libhardware.
-include $(CLEAR_VARS)
-LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc
-LOCAL_CFLAGS += -Wall -Werror
-LOCAL_SHARED_LIBRARIES += liblog libgptutils libcutils
-LOCAL_HEADER_LIBRARIES := libhardware_headers libsystem_headers
-LOCAL_SRC_FILES := boot_control.cpp
-LOCAL_MODULE_RELATIVE_PATH := hw
-LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM)
-LOCAL_MODULE_OWNER := qcom
-LOCAL_PROPRIETARY_MODULE := true
-include $(BUILD_SHARED_LIBRARY)
-
-# Static library for the target. Used by update_engine_sideload from recovery.
-include $(CLEAR_VARS)
-LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc
-LOCAL_CFLAGS += -Wall -Werror
-LOCAL_SHARED_LIBRARIES += liblog libgptutils libcutils
-LOCAL_HEADER_LIBRARIES := libhardware_headers libsystem_headers
-LOCAL_SRC_FILES := boot_control.cpp
-LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM)
-include $(BUILD_STATIC_LIBRARY)
-
-endif
-endif