summaryrefslogtreecommitdiffstats
path: root/updater/Android.mk
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2020-01-15 18:38:09 +0100
committerDan Willemsen <dwillemsen@google.com>2020-01-15 18:39:13 +0100
commit5a6784168f25cf6e0139d48baa516ed510f19595 (patch)
treebf0092401543251c25738d5a7593f4c00d123470 /updater/Android.mk
parentMerge "Add elsk@ to OWNERS" (diff)
downloadandroid_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar.gz
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar.bz2
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar.lz
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar.xz
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.tar.zst
android_bootable_recovery-5a6784168f25cf6e0139d48baa516ed510f19595.zip
Diffstat (limited to 'updater/Android.mk')
-rw-r--r--updater/Android.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/updater/Android.mk b/updater/Android.mk
index 6f54d89b8..8a4cd86d9 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -111,32 +111,3 @@ inc :=
LOCAL_FORCE_STATIC_EXECUTABLE := true
include $(BUILD_EXECUTABLE)
-
-# TODO(xunchang) move to bp file
-# update_host_simulator (host executable)
-# ===============================
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := update_host_simulator
-LOCAL_MODULE_HOST_OS := linux
-
-LOCAL_SRC_FILES := \
- update_simulator_main.cpp
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/include
-
-LOCAL_CFLAGS := \
- -Wall \
- -Werror
-
-LOCAL_STATIC_LIBRARIES := \
- libupdater_host \
- libupdater_core \
- $(updater_common_static_libraries) \
- libfstab \
- libc++fs
-
-LOCAL_MODULE_CLASS := EXECUTABLES
-
-include $(BUILD_HOST_EXECUTABLE)