summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-05-30 23:58:31 +0200
committerandroid-build-merger <android-build-merger@google.com>2019-05-30 23:58:31 +0200
commit1e28fd0bc2afb00b67df62bada90b90378d71fce (patch)
tree79a8b95b16ae13fc56373efff3533b933f4ad1b8
parentMerge "Implement an update simulator to verify BB OTA packages on host" am: 65d7d5b8cf am: 29d9d7bbbe am: 55e82e2fc5 (diff)
parentMerge "Disable building simulator for mac" am: f3dd821f76 am: 3489b274d0 (diff)
downloadandroid_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar.gz
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar.bz2
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar.lz
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar.xz
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.tar.zst
android_bootable_recovery-1e28fd0bc2afb00b67df62bada90b90378d71fce.zip
-rw-r--r--updater/Android.bp12
-rw-r--r--updater/Android.mk1
2 files changed, 13 insertions, 0 deletions
diff --git a/updater/Android.bp b/updater/Android.bp
index a66155b3a..b279068a8 100644
--- a/updater/Android.bp
+++ b/updater/Android.bp
@@ -81,6 +81,12 @@ cc_library_static {
"updater.cpp",
],
+ target: {
+ darwin: {
+ enabled: false,
+ },
+ },
+
export_include_dirs: [
"include",
],
@@ -131,6 +137,12 @@ cc_library_host_static {
"libfstab",
],
+ target: {
+ darwin: {
+ enabled: false,
+ },
+ },
+
export_include_dirs: [
"include",
],
diff --git a/updater/Android.mk b/updater/Android.mk
index b8b5e5a70..e969d1c80 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -118,6 +118,7 @@ include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)
LOCAL_MODULE := update_host_simulator
+LOCAL_MODULE_HOST_OS := linux
LOCAL_SRC_FILES := \
update_simulator_main.cpp