diff options
author | Tianjie Xu <xunchang@google.com> | 2019-07-15 01:32:05 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-07-15 01:32:05 +0200 |
commit | 7823451895b48f45debb5a265ba7b1970999c9bc (patch) | |
tree | 802a0e91b0035a86f4f2ba37814796425594656b | |
parent | Merge "Fix build for API change to DestroyLogicalPartition()." am: 4c8e6eae28 am: d3d51e5066 (diff) | |
parent | Merge "Drop the device specific support for update host simulator" am: fc2ad88770 (diff) | |
download | android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar.gz android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar.bz2 android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar.lz android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar.xz android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.tar.zst android_bootable_recovery-7823451895b48f45debb5a265ba7b1970999c9bc.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/Android.mk | 15 |
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) |