summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-07-03 00:39:59 +0200
committerTianjie Xu <xunchang@google.com>2019-07-12 20:55:59 +0200
commitb42281a423356b55a3e0138316497999f04a706b (patch)
tree967398a5ce70d983174af317359cdcd5c9fb8e04
parentMerge "minadbd sends heartbeat to rescue service for getprop command." (diff)
downloadandroid_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar.gz
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar.bz2
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar.lz
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar.xz
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.tar.zst
android_bootable_recovery-b42281a423356b55a3e0138316497999f04a706b.zip
-rw-r--r--updater/Android.mk15
1 files changed, 2 insertions, 13 deletions
diff --git a/updater/Android.mk b/updater/Android.mk
index 63fd7bdfe..93525c12a 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -112,8 +112,8 @@ LOCAL_FORCE_STATIC_EXECUTABLE := true
include $(BUILD_EXECUTABLE)
-
-# update_host_simulator (static executable)
+# TODO(xunchang) move to bp file
+# update_host_simulator (host executable)
# ===============================
include $(CLEAR_VARS)
@@ -133,21 +133,10 @@ LOCAL_CFLAGS := \
LOCAL_STATIC_LIBRARIES := \
libupdater_host \
libupdater_core \
- $(TARGET_RECOVERY_UPDATER_HOST_LIBS) \
- $(TARGET_RECOVERY_UPDATER_HOST_EXTRA_LIBS) \
$(updater_common_static_libraries) \
libfstab \
libc++fs
LOCAL_MODULE_CLASS := EXECUTABLES
-inc := $(call local-generated-sources-dir)/register.inc
-
-$(inc) : libs := $(TARGET_RECOVERY_UPDATER_HOST_LIBS)
-$(inc) :
- $(call generate-register-inc,$@,$(libs))
-
-LOCAL_GENERATED_SOURCES := $(inc)
-
-inc :=
include $(BUILD_HOST_EXECUTABLE)