aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-07-21 14:16:10 -0700
committerDan Willemsen <dwillemsen@google.com>2016-07-21 14:16:10 -0700
commitbbd7096ae2174a1f6133ef1078cdabedeb3825d7 (patch)
treec9d52212264ebfb8571f3b8ebff2a4157015f0a7
parentbb621b95ea636314c87b885107c8d5331992f9bb (diff)
downloadnvram-bbd7096ae2174a1f6133ef1078cdabedeb3825d7.tar.gz
Rename lib{crypto,ssl}-host to lib{crypto,ssl}
There's no need to use a different name for target and host moudles. In Soong, it's better to use the same for both, as target and host modules can be defined at the same time. Change-Id: Icc70c3918f53dc7bba07d5219c6c1468da83328f
-rw-r--r--core/Android.mk2
-rw-r--r--core/tests/Android.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Android.mk b/core/Android.mk
index 6a705ea..4ba77b6 100644
--- a/core/Android.mk
+++ b/core/Android.mk
@@ -39,7 +39,7 @@ LOCAL_CFLAGS := -Wall -Werror -Wextra -DNVRAM_WIPE_STORAGE_SUPPORT
LOCAL_CLANG := true
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
-LOCAL_SHARED_LIBRARIES := libnvram-messages-host libcrypto-host
+LOCAL_SHARED_LIBRARIES := libnvram-messages-host libcrypto
include $(BUILD_HOST_STATIC_LIBRARY)
include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/core/tests/Android.mk b/core/tests/Android.mk
index 003bfdf..1be8329 100644
--- a/core/tests/Android.mk
+++ b/core/tests/Android.mk
@@ -25,5 +25,5 @@ LOCAL_SRC_FILES := \
LOCAL_CFLAGS := -Wall -Werror -Wextra -DHAS_GTEST
LOCAL_CLANG := true
LOCAL_STATIC_LIBRARIES := libnvram-core-host
-LOCAL_SHARED_LIBRARIES := libnvram-messages-host libcrypto-host
+LOCAL_SHARED_LIBRARIES := libnvram-messages-host libcrypto
include $(BUILD_HOST_NATIVE_TEST)