@@ -30,7 +30,6 @@ include $(LOCAL_PATH)/Makefile.sources
#static library for the device (recovery)
include $(CLEAR_VARS)
LOCAL_MODULE := libdrm
-LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(patsubst %.h, , $(LIBDRM_FILES))
LOCAL_EXPORT_C_INCLUDE_DIRS := \
@@ -48,7 +47,6 @@ include $(BUILD_STATIC_LIBRARY)
# Shared library for the device
include $(CLEAR_VARS)
LOCAL_MODULE := libdrm
-LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(patsubst %.h, , $(LIBDRM_FILES))
LOCAL_EXPORT_C_INCLUDE_DIRS := \
@@ -5,7 +5,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_amdgpu
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
@@ -5,7 +5,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_etnaviv
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
@@ -5,7 +5,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_freedreno
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
@@ -28,7 +28,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_intel
-LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(patsubst %.h, , $(LIBDRM_INTEL_FILES))
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
@@ -45,7 +45,6 @@ LOCAL_SRC_FILES += $(LIBKMS_RADEON_FILES)
endif
LOCAL_MODULE := libkms
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
@@ -5,7 +5,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_nouveau
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
@@ -5,7 +5,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_radeon
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
@@ -27,7 +27,6 @@ include $(CLEAR_VARS)
include $(LOCAL_PATH)/Makefile.sources
LOCAL_MODULE := libdrm_util
-LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libdrm
Seems to be the default option. Fleshed out from a larger commit in the AOSP repo/fork. Cc: Dan Willemsen <dwillemsen@google.com> Cc: Chih-Wei Huang <cwhuang@android-x86.org> Cc: Rob Herring <robh@kernel.org> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> --- Dan a couple of humble requests: - can we get a reference when (Android vX) this is the default ? - there's a bunch of nice fixes in-tree - can you (anyone in the team) cleanup the gerrit/aosp tags, rebase and sent them over - see upstream autogen.sh * build fixes leanups * use mmap64 over __mmap2 (with the fix squashed). please state since when mmap64 is available * remove libpciaccess dep (with the printf warning fixed) * tegra offset fix * others ? With the above sorted, it would be a lot easier to rebase the repo when working on the next Android. Note that the atomic code used here is not the upstream one - I'd suggest switching over ;-) Thanks ! --- Android.mk | 2 -- amdgpu/Android.mk | 1 - etnaviv/Android.mk | 1 - freedreno/Android.mk | 1 - intel/Android.mk | 1 - libkms/Android.mk | 1 - nouveau/Android.mk | 1 - radeon/Android.mk | 1 - tests/util/Android.mk | 1 - 9 files changed, 10 deletions(-)