aboutsummaryrefslogtreecommitdiff
path: root/hal/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'hal/Android.mk')
-rw-r--r--hal/Android.mk30
1 files changed, 0 insertions, 30 deletions
diff --git a/hal/Android.mk b/hal/Android.mk
index 7f135df..973ac38 100644
--- a/hal/Android.mk
+++ b/hal/Android.mk
@@ -16,34 +16,6 @@
LOCAL_PATH := $(call my-dir)
-# A static library providing glue logic that simplifies creation of NVRAM HAL
-# modules.
-include $(CLEAR_VARS)
-LOCAL_MODULE := libnvram-hal
-LOCAL_SRC_FILES := \
- nvram_device_adapter.cpp
-LOCAL_CFLAGS := -Wall -Werror -Wextra
-LOCAL_CLANG := true
-LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
-LOCAL_SHARED_LIBRARIES := libnvram-messages
-include $(BUILD_STATIC_LIBRARY)
-
-# nvram.testing is the software-only testing NVRAM HAL module backed by the
-# fake_nvram daemon.
-include $(CLEAR_VARS)
-LOCAL_MODULE := nvram.testing
-LOCAL_MODULE_RELATIVE_PATH := hw
-LOCAL_SRC_FILES := \
- testing_module.c \
- testing_nvram_implementation.cpp
-LOCAL_CLANG := true
-LOCAL_CFLAGS := -Wall -Werror -Wextra -fvisibility=hidden
-LOCAL_STATIC_LIBRARIES := libnvram-hal
-LOCAL_SHARED_LIBRARIES := libnvram-messages libcutils libbase
-LOCAL_MODULE_TAGS := optional
-include $(BUILD_SHARED_LIBRARY)
-
# fake_nvram is a system daemon that provides a software-only access-controlled
# NVRAM implementation. This is only for illustration and in order to get code
# using access-controlled NVRAM running on emulators. It *DOES NOT* meet the
@@ -76,5 +48,3 @@ LOCAL_MODULE_PATH := $(TARGET_OUT)/usr/share/policy/
LOCAL_SRC_FILES := fake-nvram-seccomp-$(TARGET_ARCH).policy
LOCAL_MODULE_TARGET_ARCH := arm arm64 x86 x86_64
include $(BUILD_PREBUILT)
-
-include $(call all-makefiles-under,$(LOCAL_PATH))